在PRESTASHOP中的多线程URL上找不到所有CSS和JS文件

时间:2014-09-22 09:40:49

标签: php friendly-url prestashop-1.6

我在prestashop网站上启用了多股票选项。我还设置了一个名为“abc”的商店并设置了其网址“http://example.com/abc”。我的网站主页运行得很好,但是当我去我的商店网址“http://example.com/abc”时,由于找不到头标记中的所有js和css文件,因此无法正确加载,并且显示找不到404所有css和js文件在consol中。 那可能是什么问题。感谢您提前帮助。

1 个答案:

答案 0 :(得分:3)

  1. 从配置文件夹
  2. 打开vim config/settings.inc.php
  3. 找到包含__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');
    
  4. 保存更改。

  5. 查看此网址以获取更多信息:http://www.a2hosting.com/kb/installable-applications/optimization-and-configuration/prestashop2/changing-the-prestashop-url-settings