我正在尝试使用Laravel框架构建应用程序。
错误服务器遇到内部错误或配置错误,无法完成您的请求。
我检查了httpd.conf以检查是否没有评论mode_rewrite。我也尝试将AllowOverride" None更改为" All"在httpd.conf文件中。有人可以帮帮我吗?
.htaccess文件如下所示:
选项-MultiViews
RewriteEngine On
# Redirect Trailing Slashes If Not A Folder...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
答案 0 :(得分:0)
虽然这是一篇旧文章,但我在OSX上遇到了同样的问题,我能够使用我发现here on stack的解决方案解决它,如下所示:
我在终端中运行了以下命令。
sudo chmod -R 755 laravel_project
然后运行以下命令以提供laravel权限以写入存储文件夹
chmod -R o+w laravel_project/storage
注意:在终端中运行此功能之前,请确保xampp欢迎页面" http://localhost/dashboard"是功能性的,否则它可能是不同的