使用 .htaccess 和 mod_rewrite 不需要 PHP 页面中的文件扩展名

发布于 2024-12-08 20:19:31 字数 379 浏览 0 评论 0原文

希望能为大家提供一个快速的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

诗化ㄋ丶相逢 2024-12-15 20:19:31

正如上面评论中所建议的,我使用 Apache 的 MultiViews 解决了这个问题,

将以下内容添加到我的 .htaccess 文件中就成功了:

Options +MultiViews
AddType application/x-httpd-php .php

更新:更多详细信息请参见此处:
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:

Options +MultiViews
AddType application/x-httpd-php .php

Update: More details here:
http://www.bmt-online.org/geekisms/php-multiviews

默嘫て 2024-12-15 20:19:31

我想说这应该可以做到

htcaccess:

RewriteEngine on
RewriteBase /
RewriteRule whatever$ whatever.php

I'd say this should do it

htcaccess:

RewriteEngine on
RewriteBase /
RewriteRule whatever$ whatever.php
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文