我正在使用.htaccess,我需要将查询字符串重写为名称空间,如下所示:
general_page.php?code=2 To about-us
general_page.php?code=4 To contact
答案 0 :(得分:1)
我相信这就是你想要的
RewriteEngine on
RewriteRule ^about-us$ /general_page.php?code=2 [L]
RewriteRule ^contact$ /general_page.php?code=4 [L]
这会将http://foo.com/about-us翻译为http://foo.com/general_page.php?code=2,将http://foo.com/contact翻译为http://foo.com/general_page.php?code=4