thinkphp6 框架 404 问题
1:虚拟机配置文件修改:location / { index index.php index.html; if (!-e $request_filename) { rewrite ^/index.php(.*)$ /index.php?s=$1 last; #必须在前面 rewrite ^(.*)$ /index.php?s=$1 last; break; }}2:项目入口
·
1:虚拟机配置文件修改:
location / {
index index.php index.html;
if (!-e $request_filename) {
rewrite ^/index.php(.*)$ /index.php?s=$1 last; #必须在前面
rewrite ^(.*)$ /index.php?s=$1 last;
break;
}
}
复制时 空格替换成tab ,否则可能报错哦
2:项目入口文件:.htaccess 保值默认即可
<IfModule mod_rewrite.c>
Options +FollowSymlinks -Multiviews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]
</IfModule>
更多推荐
已为社区贡献7条内容
所有评论(0)