Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我当前的网址是
http://domain.com/directory/page.php
我希望页面被访问,地址栏保持不变
http://domain.com/page
这可能与 htaccess 吗?
您需要启用 mod_rewrite。然后,你可以在你的 .htaccess 文件中加入这样的内容:
RewriteEngine on RewriteRule ^/page$ /directory/page.php [L]
如果您想对 /directory/ 中的所有 php 脚本执行此操作,您可以这样做:
RewriteEngine on RewriteRule ^/([^/]+)$ /directory/$1.php [L]