Apache配置Laravel报You don‘t have permission to access this resource

Apache配置Laravel报You don‘t have permission to access this resource_第1张图片

解决方案

Apache 服务器

Laravel框架通过设置 public/.htaccess 文件去除链接中的index.php。 如果你你的服务器使用的是Apache,请开启mod_rewrite 模块。

如果框架附带的 .htaccess 文件在你的Apache环境中不起作用,请在.htaccess后面添加:

Options +FollowSymLinks
RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)/$ http://%{HTTP_HOST}/$1 [R=301,L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]

成功之后出现这个页面

Apache配置Laravel报You don‘t have permission to access this resource_第2张图片

你可能感兴趣的:(Laravel)