经过一个多小时的搜索,我仍然无法弄清楚如何将链接从 重定向http://site/fr/other
到http://site/other
.
我正在使用这段代码:
RewriteEngine On
RewriteRule ^/fr/(.*)$ /$1 [L,R=301,QSA]
经过一个多小时的搜索,我仍然无法弄清楚如何将链接从 重定向http://site/fr/other
到http://site/other
.
我正在使用这段代码:
RewriteEngine On
RewriteRule ^/fr/(.*)$ /$1 [L,R=301,QSA]
只需删除第一个正斜杠:RewriteRule ^fr/(.*)$ /$1 [L,R=301,QSA]
.
从 url 中删除 '-xyz-'
RewriteRule ^(.*)-xyz-(.*).html$ http://%{SERVER_NAME}/$1-$2.html [NC,R=301,L]
从 url ' http://yoursite.com/xyz/some-url.html ' 中删除 'xyz'
RewriteRule ^xyz/(.*)\.html$ $1-watches.html [L,R=301]
从 url ' http://yoursite.com/some-dir/xyz/some-url.html ' 中删除 'xyz'
RewriteRule ^(.*)/xyz/(.*).html$ http://%{SERVER_NAME}/$1/$2.html [NC,R=301,L]