thinkphp下的.htacss 隐藏入口文件的规则是:
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
IIS环境下thinkphp配置:
如果你的服务器环境支持ISAPI_Rewrite的话,可以配置httpd.ini文件,添加下面的内容:
- RewriteRule (.*)$ /index.php?s=$1 [I]
在IIS的高版本下面可以配置web.Config,在中间添加rewrite节点:
name=”OrgPage” stopProcessing=”true”> url=”^(.*)$” /> logicalGrouping=”MatchAll”> input=”{HTTP_HOST}” pattern=”^(.*)$” /> input=”{REQUEST_FILENAME}” matchType=”IsFile” negate=”true” /> input=”{REQUEST_FILENAME}” matchType=”IsDirectory” negate=”true” /> type=”Rewrite” url=”index.php/{R:1}” />
转载请注明:php学习博客_seo学习_老头网 ? thinkphp隐藏入口文件的规则。在linux下个windows下的。和在.htacss下和在httpd.ini下的