我如何在我的htaccess文件中执行301重定向?
旧网址
http://www.domain.com/newsletter/modules.php?op=modload&name=News&file=article&sid=221
http://www.domain.com/newsletter/modules.php?op=modload&name=News&file=article&sid=224
新网址
对于221 - https://www.domain.com/news/
对于224 - https://www.domain.com/treatments/laser-comb/iso-certification/
说明:除了最后的文章ID号外,OLD网址中的所有内容基本相同。
答案 0 :(得分:1)
在htaccess文件的顶部,添加以下内容:
RewriteEngine on
#1)
RewriteCond %{THE_REQUEST} /newsletter/modules\.php\?op=modload&name=News&file=article&sid=221 [NC]
RewriteRule ^ http://www.domain.com/news/? [L,R=301]
#2)
RewriteCond %{THE_REQUEST} /newsletter/modules\.php\?op=modload&name=News&file=article&sid=224 [NC]
RewriteRule ^ https://www.domain.com/treatments/laser-comb/iso-certification/? [L,R=301]