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

2024-11-16 10:49:37
推荐回答(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里四种重写的方式都可以实现的!