Mac apache Laravel 需要改的一些配置

来源:互联网 发布:亚马逊索评软件 编辑:程序博客网 时间:2024/06/11 09:20

Mac apache Laravel 需要改的一些配置

1、修改httpd.conf文件,开启modrewrite模块

LoadModule rewrite_module libexec/mod_rewrite.so

前面的#注释号去掉;

2、主机配置中将 AllowOverride None改为 AllowOverride All

3、主机配置中添加如下内容

Options +FollowSymLinksRewriteEngine OnRewriteCond %{REQUEST_FILENAME} !-dRewriteCond %{REQUEST_FILENAME} !-fRewriteRule ^ index.php [L]

4、修改storage目录属性

chmod -R 777 storage

修改storage及下级目录属性为777

5、重启APACHE。

0 0