1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > IIS PHP web.config设置去掉index.php

IIS PHP web.config设置去掉index.php

时间:2024-03-11 06:32:38

相关推荐

IIS PHP web.config设置去掉index.php

<?xml version="1.0" encoding="UTF-8"?><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>

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