宝塔面板搭建thinkphp后请求中去除index.php后缀
nginx配置
-
在宝塔面板
网站
中绑定thinkphp
的public
,添加站点 -
点击站点
设置
按钮打开项目设置页面 -
找到
配置文件
选项,然后在22行
后添加一下代码location / { if (!-f $request_filename) { rewrite ^(.*)$ /index.php?s=/$1 last; } }
-
重启服务
图例:
Apache配置
- 在
public
下新建.htaccess
文件 - 填充内容
Options +FollowSymlinks -Multiviews RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]
重启项目
图例:
来源地址:https://blog.csdn.net/qq_41457238/article/details/131133690