IIS下 thinkphp 默认访问index.html 同时隐藏index.php

2024年11月16日 10:49
有3个网友回答
网友(1):

在conf文件加下找到convention.php文件配置一下,开启URL重写机制

然后创建.htaccess


RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]

网友(2):

我记得thinkphp里面是不是有路由功能,你去看一下!

rewrite 规则

RewriteEngine On

RewriteCond %{REQUEST_URI} !^/css/.*
RewriteCond %{REQUEST_URI} !^/scripts/.*
RewriteCond %{REQUEST_URI} !^/images/.*

RewriteRule ^.*$ index.html [QSA,NC,L]

网友(3):

这个是url重写吧,thinkPHP里四种重写的方式都可以实现的!