0

如果我访问 www.domain.com/main我想获得www.domain.com我如何使用 prestashop 从 .htaccess 中获得它?先感谢您

4

2 回答 2

0

在 .htaccess 顶部使用此 RedirectMatch 行:

RedirectMatch 301 ^/main/?$ /
于 2013-11-06T10:22:52.653 回答
0

只需将以下代码放在 # ~~start~~ 注释之前(如果使用 PrestaShop 1.5)或者如果小于 1.5,则放在文件开头

<IfModule mod_rewrite.c>
RewriteEngine On
RedirectMatch 301 ^/main/$ http://www.domain.com/
</IfModule>
于 2013-11-06T13:13:11.167 回答