2020-11-26 11:09发布
我的是IIS8.5,PHP7.3安装成功,访问一切正常。但后台开启伪静态报错,其他PHP程序伪静态都正常,比如DISCUZ,ZBLOG程序,按说组件应该都正常。这应该就是WHATSNS的伪静态问题了
<system.webServer>
<rewrite>
<rules>
<rule name="Imported Rule 1" stopProcessing="true">
<match url="^/(.*)$" ignoreCase="false" />
<conditions logicalGrouping="MatchAll">
<add input="{R:1}" pattern="^(index\.php|images|system|static|data|robots\.txt)" ignoreCase="false" negate="true" />
</conditions>
<action type="Rewrite" url="/index.php/{R:1}" />
</rule>
</rules>
</rewrite>
</system.webServer>
根目录 web.config文件中增加,不会那没办法了
这个是伪静态配置
配置了,还是访问不了。我的是IIS8.5
最多设置5个标签!
<system.webServer>
<rewrite>
<rules>
<rule name="Imported Rule 1" stopProcessing="true">
<match url="^/(.*)$" ignoreCase="false" />
<conditions logicalGrouping="MatchAll">
<add input="{R:1}" pattern="^(index\.php|images|system|static|data|robots\.txt)" ignoreCase="false" negate="true" />
</conditions>
<action type="Rewrite" url="/index.php/{R:1}" />
</rule>
</rules>
</rewrite>
</system.webServer>
根目录 web.config文件中增加,不会那没办法了
这个是伪静态配置
作者追问:2020-11-26 11:28
配置了,还是访问不了。我的是IIS8.5
一周热门 更多>