如果我访问www.domain.com/main我想获得www.domain.com我怎样才能使用prestashop从.htaccess进行操作?提前谢谢你
答案 0 :(得分:0)
在.htaccess:
之上使用此RedirectMatch行RedirectMatch 301 ^/main/?$ /
答案 1 :(得分:0)
只需将以下代码放在#~~ start ~~ comment(如果使用PrestaShop 1.5)或文件开头(如果小于1.5)
<IfModule mod_rewrite.c>
RewriteEngine On
RedirectMatch 301 ^/main/$ http://www.domain.com/
</IfModule>