为了让我们的URL省略掉index.php的同时,又让所有的请求指向index.php这个入口文件,这时候就要对我们的服务器进行配置。
Apache
在网站根目录下,添加一个.htaccess
文件,具体配置如下:
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
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]
# Handle Authorization Header
RewriteCond %{HTTP:Authorization} .
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
</IfModule>
Nginx
如果是Nginx,需要在你的站点配置文件中(我的文件位置/etc/nginx/vhost/laravel.conf
)添加如下一行配置:
location / {
try_files $uri $uri/ /index.php?$query_string;
}