如何让prestashop在我的本地服务器上使用prestashop.conf
克隆000.default.conf
的文件?
当我停用000-default.conf
时,prestashop无法加载。
当我启用它时,网页正常加载。
我已启用prestashop.conf
并重新加载/重新启动Apache。
我使用Apache2,prestashop 1.6.1,操作系统是Linux Mint。
也许有人可以给我建议我还应该改变什么。到目前为止,我还没有找到解决方案。
P.S。 prestashop.conf是000-default.conf
的完整克隆。
答案 0 :(得分:2)
您是否更改了与您网站相匹配的路径?
<VirtualHost *:80>
ServerAdmin youradminlogin@yourwebsite.com
DocumentRoot "path/of/your/website"
ServerName website-name.com
Options All Indexes FollowSymLinks
<Directory "path/of/your/website">
DirectoryIndex index.html
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
Allow from all
Require local
</Directory>
</VirtualHost>
使shure成为/ etc / apache2 / sites-enabled /!
修改后,您需要重启服务器(sudo apachectl restart)