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.
我有一个页面如下。
www.mysite.com/about.php
我希望在 htaccess 文件中设置它,使其如下所示。
www.mysite.com/my-keyword-here
请帮我。
提前致谢。山姆
将此添加到文档根目录中的 htaccess 文件中:
RewriteEngine On RewriteRule ^/?my-keyword-here$ /about.php [L]
所以现在如果你http://www.mysite.com/my-keyword-here在浏览器的 URL 地址栏中输入,你将返回/about.php.
http://www.mysite.com/my-keyword-here
/about.php