如何在没有 mod_alias 的情况下为 .htaccess 中的单页创建永久重定向(301)?
铁
http://www.example.com/oldpage --> http://www.elpmaxe.com/newpage
如何在没有 mod_alias 的情况下为 .htaccess 中的单页创建永久重定向(301)?
铁
http://www.example.com/oldpage --> http://www.elpmaxe.com/newpage
我的队友给了我很好的答案:
RewriteCond %{http_host} www\.example\.com$ [nc]
RewriteCond %{request_uri} ^/oldpage(/)?$ [nc]
RewriteRule ^(.*)$ http://www.elpmaxe.com/newpage [r=301,L,NC,NS,QSA]
使用 mod_rewrite 和以下 .htaccess
RewriteEngine on
RewriteRule ^oldpage/(.*)$ newpage/$1 [R=301]