我正在尝试在加载主商店页面之前加载带徽标的启动页面。我将我的网页命名为index.html
,我在DirectoryIndex
中更改了.htaccess
,以便在index.html
之前加载index.php
。
问题是卡片模块不再有效,因为它请求重定向到主商店(index.php
)。在我的情况下,它被修改为index.html
所以它给了我一个空白页面。如何设置启动页面而不会导致此问题?
答案 0 :(得分:0)
我在实现prestashop v 1.6的简介页时遇到相同的问题 解决方案是: 在.htaccess文件中,只需添加以下代码:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^.*$ index.html
</IfModule>
请注意,RewriteRule必须设置为index.php:
RewriteRule ^.*$ %{ENV:REWRITEBASE}index.php [NC,L]
因此:
-每当显示www.sitename.com的第一个index.html(简介页)
-然后用户可以通过任何链接转到prestashop网站的其他部分
-然后,每当单击主页时,用户都会返回到简介页(如果要返回 prestashop主页不在介绍页面中,请关注this link)