所以我有这个问题,用新的更改旧网站,我需要重定向所有旧链接。所以有这个: 的 domain.com/articles.php?var=1 我基本上想要将 articles.php 之后的所有内容重定向到 domain.com ,包括 /articles.php 。
提前谢谢。
答案 0 :(得分:0)
尝试将此添加到您的htaccess文件中:
RedirectMatch 301 ^/articles\.php$ /
或者如果你的htaccess文件中已经有mod_rewrite规则,你需要使用mod_rewrite isntead,并将此规则添加到已经存在的规则之上:
RewriteRule ^articles\.php$ / [L,R=301]