我正在使用IIS-7并且正在从基于Linux和apache的服务器环境移动一个站点。我知道web.config与.htaccess的工作相同。我想将我的.htaccess文件中的以下行转换为web.config文件。我从哪里开始?
Options +FollowSymlinks
RewriteEngine On
RewriteRule ([A-Za-z0-9/_-]+).(jp(e?)g|gif|png)$ thumb.php?src=../../uploads/default/files/$1.$2&size=160x90
答案 0 :(得分:8)
要将规则从.htaccess转换为web.config,您可以使用IIS URL重写模块的导入功能:
More info关于此功能。
例如,您的规则将转换为以下规则:
<rewrite>
<rules>
<rule name="Imported Rule 1">
<match url="([A-Za-z0-9/_-]+).(jp(e?)g|gif|png)$" ignoreCase="false" />
<action type="Rewrite" url="thumb.php?src=../../uploads/default/files/{R:1}.{R:2}&size=160x90" appendQueryString="false" />
</rule>
</rules>
</rewrite>