laravel框架如何去掉URL中index.php
1 回答
繁花如伊
TA贡献2012条经验 获得超12个赞
Apache
Laravel 框架通过 public/.htaccess 文件来让 URL 不需要 index.php 即可访问。在 Apache 启用 Laravel 之前,请确认是否有开启 mod_rewrite 模块,以便 .htaccess 文件发挥作用。
如果 Laravel 附带的 .htaccess 文件在 Apache 中无法使用的话,请尝试下方的做法:
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
Nginx
如果你使用 Nginx ,在你的网站配置中加入下述代码将会转发所有的请求到 index.php 前端控制器。
location / {
try_files $uri $uri/ /index.php?$query_string;
}
- 1 回答
- 0 关注
- 885 浏览
添加回答
举报
0/150
提交
取消