phpStudy 中部署laravel项目时出现403问题

phpStudy 中部署laravel项目时出现403问题

注释了D:\phpStudy\Apache\conf\vhost.conf中的一句话【Options -Indexes -FollowSymLinks +ExecCGI】

<VirtualHost _default_:80> 
DocumentRoot "xxxx"
  <Directory "C:\phpStudy\PHPTutorial\WWW\easyPosition5\public">
    #Options -Indexes -FollowSymLinks +ExecCGI
    AllowOverride All
    Order allow,deny
    Allow from all
    Require all granted
  </Directory>
</VirtualHost>
 

发布了9 篇原创文章 · 获赞 2 · 访问量 702

猜你喜欢

转载自blog.csdn.net/sunsineq/article/details/104897840