开始的时候是没问题,突然一天就这样了。我在Apache中设置了虚拟主机,如下
<VirtualHost *:80>
ServerAdmin myname
DocumentRoot "${SRVROOT}/htdocs/laravel/public/index.php"
ServerName myapp.com
ErrorLog "${SRVROOT}/htdocs/laravel/myapp.com-error.log"
CustomLog "${SRVROOT}/htdocs/laravel/myapp.com-access.log" common
<Directory "${SRVROOT}/htdocs/laravel/public">
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Require all granted
</Directory>
</VirtualHost>
我不知道是不是URL重写的问题?求指教