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.
我有一个网站,其中搜索结果显示 URL,例如
http://mysite.com/index.php?SearchBox=Tum%20Hi%20Ho
如何将 URL 动态更改为类似
http://mysite.com/tum-hi-ho.html
请帮忙。
在 Apache 服务器上工作时使用 .htaccess 文件,确保启用了 mod_rewrite。
尝试以下方式:
RewriteEngine on RewriteRule ^/(.*).html$ ?SearchBox=$1 [L]
看看以下链接:
http://www.addedbytes.com/articles/for-beginners/url-rewriting-for-beginners/
http://httpd.apache.org/docs/2.0/misc/rewriteguide.html