但是需要设置服务器配置
[ apache ]
httpd.conf配置文件中:
加载mod_rewrite.so模块
allowoverride none 将none改为 all
把下面的内容保存为.htaccess文件放到应用入口文件的同级目录下
<span style="font-size:18px;"><ifmodule mod_rewrite.c> rewriteengine on rewritecond %{request_filename} !-d rewritecond %{request_filename} !-f rewriterule ^(.*)$ index.php/$1 [qsa,pt,l]</ifmodule> </span>
[ iis ]如果你的服务器环境支持isapi_rewrite的话,可以配置httpd.ini文件,添加下面的内容:
<span style="font-size:18px;">rewriterule (.*)$ /index\.php\?s=$1 [i]</span>
在iis的高版本下面可以配置web.config,在中间添加rewrite节点:
<span style="font-size:18px;"><rewrite> <rules> <rule name="orgpage" stopprocessing="true"> <match url="^(.*)$" /> <conditions logicalgrouping="matchall"> <add input="{http_host}" pattern="^(.*)$" /> <add input="{request_filename}" matchtype="isfile" negate="true" /> <add input="{request_filename}" matchtype="isdirectory" negate="true" /> </conditions> <action type="rewrite" url="index.php/{r:1}" /> </rule> </rules> </rewrite> </span>
相关推荐:
总结一下隐藏index.php文件的步骤
thinkphp隐藏index.php/home,并允许访问其他模块
php5.4+内置webserver,yii中如何隐藏index.php,让url rewrite
以上就是thinkphp3.2隐藏index.php的方法代码的详细内容。