我已经开发了一个多语言prestashop商店完全在本地主机使用xampp在mac和它的工作.后台和商店(frontoffice).之后,我把它部署到亚马逊,但是我的问题.后台工作,但商店没有.
浏览器只显示一个apache 404页面,并告诉我在此服务器上找不到请求的URL域/ prestashop / en /.但它确实存在.此外,后台确认.
检查error.log我发现以下消息:
[Thu Mar 12 11:12:37 2015] [error] [client xxx.xxx.xxx.xxx]文件不存在:/ var / www / prestashop / en
对于我看到的,Apache不会将该语言(/ en /)视为文件.我已经搜索了整个网络,我找不到如何解决它.我知道这是一个服务器问题,但是无法找到解决方案.
这里有什么事?
– 编辑 –
我修复了以下步骤的问题:
>删除根.htaccess.
清除./cache/smarty/compile下的smarty缓存文件
加载未安装的mod_rewrite模块:a2enmod rewrite
>向/etc/apache2/apache2.conf添加Allowoverride All指令
<Directory /var/www/prestashop/> Options Indexes FollowSymLinks AllowOverride All </Directory>
>重新启动apache2:重启服务apache2
我通常以下列方式设置我的虚拟主机
原文链接:https://www.f2er.com/php/131780.html<Directory /var/www/prestashop/> Options Indexes FollowSymLinks MultiViews AllowOverride All Order allow,deny allow from all </Directory>