我们在杂志上发表了一篇文章,其中包含以下网址:
http://magnetic-sleep-machine.com/moves
现在我们需要确保人们将他们登陆的网址放到
https://magnetic-sleep-machine.com/moves.html
请帮我解决这个问题! .htaccess或使用magento(1.7)选项?
答案 0 :(得分:0)
有一种方法可以使用magento重定向,但不确定这是否正是您想要的。
您还可以尝试启用多视图,并让mod_negotiation在您的htaccess文件中修复模糊的URL文件映射:
Options +Multiviews
或使用mod_rewrite:
RewriteEngine On
RewriteRule ^moves/?$ /moves.html [L,R=301]
或使用mod_alias:
RedirectMatch 301 ^/moves/?$ /moves.html
答案 1 :(得分:0)
好的,我找到了使用magento本身的方法。
Voila,它现在有效。