参考网址
https://blog.csdn.net/weixin_34361881
在laravel的 public 目录下添加 .htaccess 文件 ,文件内容如下
<IfModule mod_rewrite.c>
Options -MultiViews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>
就可以通过 admin 访问后台了