SGTMS

做事情
我们是认真的
您的位置:SGTMS>其他>Emlog的IIS7伪静态配置web.config

Emlog的IIS7伪静态配置web.config

正文

百度搜了下有很多Emog在IIS7下的伪静态web.config设置,代码很多都不一样,分享一下本站目前用的吧,可以完美支持所有页面伪静态。

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <system.webServer>
    <rewrite>
      <rules>
			<rule name="amuker" patternSyntax="Wildcard">
				<match url="*"/>
					<conditions>
						<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true"/>
						<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true"/>
					</conditions>
				<action type="Rewrite" url="index.php"/>
			</rule>
      </rules>
  </rewrite>
  </system.webServer>
</configuration>
本文最后更新于2019-2-10,已超过 1 年没有更新,如果文章内容或图片资源失效,请留言反馈,我们会及时处理,谢谢!
版权声明:本文采用知识共享 署名4.0国际许可协议 [BY-NC-SA] 进行授权
文章名称:《Emlog的IIS7伪静态配置web.config》
文章链接: https://www.sgtms.com/other/59.html
本站资源仅供个人学习交流,转载或者引用本文内容请注明来源及作者,不允许用于商业用途。
分享到:

相关推荐

网友评论抢沙发

路人甲 表情
Ctrl+Enter快速提交