如何将此 .htaccess 转换为 web.config 文件以正常工作,该文件的名称 web.config 是否正确?
RewriteEngine On
RewriteBase /
RewriteRule ^(.*)$ http://www.mynedomain.com/$1 [R=302,L]
如何将此 .htaccess 转换为 web.config 文件以正常工作,该文件的名称 web.config 是否正确?
RewriteEngine On
RewriteBase /
RewriteRule ^(.*)$ http://www.mynedomain.com/$1 [R=302,L]
是的,这是web.config
您必须执行的文件。
rewrite
您可以为您的规则添加一个块
<rewrite>
<rules>
<rule name="Redirect to new domain" stopProcessing="true">
<match url="^(.*)$" />
<action type="Redirect" url="http://www.mynedomain.com/{R:1}" redirectType="Found" />
</rule>
</rules>
</rewrite>
在您的 htaccess 代码中,您有一个302
重定向(这就是我Found
在规则中使用的原因)。
如果您想要301
重定向,请在规则的操作标记中替换Found
为。Permanent