我想隐藏我安装PrestaShop的文件夹。
要访问我的商店,我必须写http://domain.com/prestashop。
但我想要访问我的商店:http://domain.com。
我该怎么做?
答案 0 :(得分:0)
如果您无权访问服务器配置。 将此.htaccess添加到您的/目录。
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_URI} !^/Prestashop/.*$
RewriteRule ^(.*)$ /Prestashop/$1 [L]
</IfModule>
不要忘记在SEO / URL中更改shop_url。
答案 1 :(得分:0)