3
任何人可以帮助我转换这个web.config文件为.htaccess转换web.config文件为.htaccess
我能找到的.htaccess到web.config中,但没有对web.config中几个在线转换器。 htaccess
<rules>
<rule name="RedirectUserFriendlyURL1" stopProcessing="true">
<match url="^themes/sets\.cfm$" />
<conditions>
<add input="{REQUEST_METHOD}" pattern="^POST$" negate="true" />
<add input="{QUERY_STRING}" pattern="^set=([^=&]+)$" />
</conditions>
<action type="Redirect" url="themes/sets/{C:1}" appendQueryString="false" />
</rule>
<rule name="RewriteUserFriendlyURL1" stopProcessing="true">
<match url="^themes/sets/([^/]+)/?$" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="themes/sets.cfm?theme={R:1}" />
</rule>
<rule name="RedirectUserFriendlyURL2" stopProcessing="true">
<match url="^set\.cfm$" />
<conditions>
<add input="{REQUEST_METHOD}" pattern="^POST$" negate="true" />
<add input="{QUERY_STRING}" pattern="^set=([^=&]+)&name=([^=&]+)$" />
</conditions>
<action type="Redirect" url="set/{C:1}/{C:2}" appendQueryString="false" />
</rule>
<rule name="RewriteUserFriendlyURL2" stopProcessing="true">
<match url="^set/([^/]+)/([^/]+)/?$" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="set.cfm?set={R:1}&name={R:2}" />
</rule>
</rules>
在此先感谢。
我需要帮助的这一点。任何帮助,将不胜感激。 –
这似乎并不大,为什么不用手工转换呢? –