欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

iis6如何隐藏index.php

程序员文章站 2022-03-24 10:04:05
...

iis6隐藏“index.php”的方法:首先打开“httpd.ini”文件;然后设置伪静态规则为“RewriteRule ^(?!/index.php)(?!/admin.php)(.*)$ /index.php/$1 [L]”即可。

iis6如何隐藏index.php

推荐:《PHP视频教程

IIS6 隐藏index.php的方法

thinkphp httpd.ini 伪静态规则

[ISAPI_Rewrite]
 RewriteRule .*\.(?:gif|jpg|png|css|js|txt|jpeg|swf|flv) $0 [I,L]
 RewriteRule /httpd(?:\.ini|\.parse\.errors) / [F,I,O]
 RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(?!/index.php)(?!/admin.php)(.*)$ /index.php/$1 [L]

以上就是iis6如何隐藏index.php的详细内容,更多请关注其它相关文章!

相关标签: iis6 index.php