我想将结尾为id=111
的所有网址(例如,www.mysite.com/1/id=111
,www.mysite.com/page_id=1?id=111
等)重写为www.mysite.com/pages
。我怎么能这样做?
答案 0 :(得分:3)
尝试将以下内容添加到站点根目录中的.htaccess
文件中。
RewriteEngine on
RewriteBase /
$if the URL ends with id=111
RewriteCond %{THE_REQUEST} id=111\ [NC]
#then rewrite the request to pages
RewriteRule ^ pages [L]
如果您要将用户地址栏中的网址更改为www.mysite.com/pages
,请将上面的最后一条规则更改为包含R=301
,如下所示
#then redirect the request to pages
RewriteRule ^ pages? [L,R=301]