我正在尝试将此页面/index.php?route=common/home重定向到index.html
并将其放在我的.htaccess页面中:
重定向301 index.php?route = common / home index.html
但是,当我这样做时,我收到500内部服务器错误。
有谁知道如何正确地做到这一点?
(注意:还有其他页面示例/index.php?route=checkout,我不想重定向)
非常感谢任何帮助。
谢谢
答案 0 :(得分:0)
Redirect
只是用于制作别名(并且是mod_alias
的一部分)。相反,您需要使用mod_rewrite
,因此RewriteRule /index.php?route=common/home index.html [R=301]
应工作,但请先检查。