使用 .htaccess 和 mod_rewrite 不需要 PHP 页面中的文件扩展名
希望能为大家提供一个快速的 URL 重写问题。
我的网站上有一个页面: http://www.sample.com/whatever.php
并且我希望能够在不输入 .php
的情况下浏览该网站
,因此 http ://www.sample.com/whatever 会显示相同的内容。
我希望这适用于根目录中的任何文件,以便用户可以使用或不使用该扩展名。
有什么想法吗?
Hopefully a quick URL rewrite question for you all.
I've got a page on my site: http://www.sample.com/whatever.php
and i'd like to be able to navigate the site without typing .php
so http://www.sample.com/whatever would show the same thing.
I'd like this to work for any file in the root directory, so users could use the extension or not.
Any thoughts?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
正如上面评论中所建议的,我使用 Apache 的 MultiViews 解决了这个问题,
将以下内容添加到我的 .htaccess 文件中就成功了:
更新:更多详细信息请参见此处:
http://www.bmt-online.org/geekisms/php-multiviews
As suggested in the comments above, I solved this issue using Apache's MultiViews
Adding the following to my .htaccess file did the trick:
Update: More details here:
http://www.bmt-online.org/geekisms/php-multiviews
我想说这应该可以做到
htcaccess:
I'd say this should do it
htcaccess: