我在prestashop网站上启用了多股票选项。我还设置了一个名为“abc”的商店并设置了其网址“http://example.com/abc”。我的网站主页运行得很好,但是当我去我的商店网址“http://example.com/abc”时,由于找不到头标记中的所有js和css文件,因此无法正确加载,并且显示找不到404所有css和js文件在consol中。 那可能是什么问题。感谢您提前帮助。
答案 0 :(得分:3)
config/settings.inc.php
找到包含__PS_BASE_URI__
设置的行,然后使用基URI更新该值。
If you installed PrestaShop in the document root directory
(for example, public_html),
then the base URI is /. Alternatively, if you installed PrestaShop
in a subdirectory,
the base URI is /path, where path represents the folder name.
For example, the following line shows
the base URI set to the document root directory (/):
define('__PS_BASE_URI__', '/');
for subdirectory - define('__PS_BASE_URI__', '/directoryname');
保存更改。