-1

我当前的网址是

http://domain.com/directory/page.php

我希望页面被访问,地址栏保持不变

http://domain.com/page

这可能与 htaccess 吗?

4

1 回答 1

1

您需要启用 mod_rewrite。然后,你可以在你的 .htaccess 文件中加入这样的内容:

RewriteEngine on
RewriteRule ^/page$ /directory/page.php [L]

如果您想对 /directory/ 中的所有 php 脚本执行此操作,您可以这样做:

RewriteEngine on
RewriteRule ^/([^/]+)$ /directory/$1.php [L]
于 2013-06-10T12:47:38.320 回答