1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > IIS 7.5 去掉index.php 西数服务器

IIS 7.5 去掉index.php 西数服务器

时间:2022-01-30 21:39:59

相关推荐

IIS 7.5 去掉index.php 西数服务器

//新建web.config 加上下面代码

<?xml version="1.0"?><configuration><system.webServer><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></system.webServer></configuration>

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。