0

我目前正在学习 Prestashop。我遇到了第一个障碍,安装 Prestashop 后,没有加载默认的商店主题文件。有任何想法吗?

尝试获取 css 文件时出现 403 错误

提前致谢。

4

1 回答 1

0

I've already found solution for my question.

It turns out that my server provider doesn't support FilesMatch .htaccess command. In order to solve it i had to change .htaccess file in both /themes and /modules directory as follows:

 <FilesMatch "\.tpl$">
 Deny from all
 </FilesMatch>

to:

 <Files ~ "\.tpl$">
 Deny from all
 </Files>
于 2013-11-02T10:02:10.920 回答