隐藏 .htaccess 中的扩展名
大家好 我有一个问题,我的文件有 .html 扩展名,但我希望当文件在 Brownser 中打开时,扩展名有 hide.eg file.html 文件。 预先致谢
Hi All
i have a problem that my file have .html extention but i want that when the file open in brownser the extention had hidden.e.g file.html to file.
Advance thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在您的
.htaccess
文件中使用以下内容:现在您可以使用
http://www.mysite.com/contact
之类的 lins,而不是http://www。 mysite.com/contact.html
。希望这有帮助!
In your
.htaccess
file use this:Now you can use lins like
http://www.mysite.com/contact
rather thanhttp://www.mysite.com/contact.html
.Hope this helps!
示例 yoursite.com/wallpaper.html 到 yoursite.com/wallpaper/
Example yoursite.com/wallpaper.html to yoursite.com/wallpaper/
您的链接必须是这样的
然后将其添加到您的 .htaccess 文件中
Your link must be like this
Then add this to your .htaccess file
RewriteEngine 开启
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}.html -f
RewriteRule ^(.*)$ $1.html
这个对于一个网站中的单个扩展来说是可以的。我在同一网站中使用多个扩展,例如index.html和contact.php。
我怎样才能使用这个代码?
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}.html -f
RewriteRule ^(.*)$ $1.html
this one is ok for single extensions in one website. I am using multiple extensions in same website for example index.html and contact.php.
How can i use this code ?