htaccess将index.php?v = 1重定向到index.html

时间:2012-03-08 22:53:33

标签: .htaccess

我正在尝试将此页面/index.php?route=common/home重定向到index.html

并将其放在我的.htaccess页面中:

重定向301 index.php?route = common / home index.html

但是,当我这样做时,我收到500内部服务器错误。

有谁知道如何正确地做到这一点?

(注意:还有其他页面示例/index.php?route=checkout,我不想重定向)

非常感谢任何帮助。

谢谢

1 个答案:

答案 0 :(得分:0)

Redirect只是用于制作别名(并且是mod_alias的一部分)。相反,您需要使用mod_rewrite,因此RewriteRule /index.php?route=common/home index.html [R=301] 工作,但请先检查。