<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <rewrite>
            <rules>
                <rule name="Redirection Https" stopProcessing="true">
                    <match url="(.*)" />
                    <conditions>
                        <add input="{HTTPS}" pattern="^OFF$" />
                    </conditions>
                    <action type="Redirect" url="https://{HTTP_HOST}/{R:1}" />
                </rule>
                <rule name="REWRITE_TO_HTML" stopProcessing="true">
                    <match url="^(.+).html$" />
                    <conditions logicalGrouping="MatchAll" />
                    <action type="Redirect" url="{R:1}.sn" />
                </rule>
                <rule name="REWRITE_TO_PHP" stopProcessing="true">
                    <match url="^(.+).php$" />
                    <conditions logicalGrouping="MatchAll" />
                    <action type="Redirect" url="{R:1}.sn" />
                </rule>
                <rule name="test1">
                    <match url="^(.*)\.sn" />
                    <action type="Rewrite" url="{R:1}.php" />
                </rule>
                <rule name="tttt" stopProcessing="true">
                    <match url="^(.+).php(.+)" />
                    <action type="Redirect" url="{R:1}.sn{R:2}" />
                </rule>
                <rule name="tttt1" stopProcessing="true">
                    <match url="^(.+).html(.+)" />
                    <action type="Redirect" url="{R:1}.sn{R:2}" />
                </rule>
            </rules>
        </rewrite>
    </system.webServer>
</configuration>

Recommended Answers

All 4 Replies

<rewrite> <rules> <rule name="test" patternSyntax="Wildcard"> <match url="" negate="false" /> <conditions> <add input="{URL}" pattern="/abc" /> </conditions> <action type="Rewrite" url="http://testappreg.azurewebsites.net" /> </rule> <rule name="test2" patternSyntax="Wildcard"> <match url="" negate="false" /> <conditions> <add input="{HTTP_REFERER}" pattern="abc" /> </conditions> <action type="Rewrite" url="http://testappreg.azurewebsites.net/{R:1}" /> </rule> </rules> </rewrite>

Well, there is no such tool to convert web.config into .htaccess file.

<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <rule name="Redirect to WWW" stopProcessing="true"> <match url="^$" /> <action type="Redirect" url="http://heresmygps.com/about" redirectType="Permanent" /> </rule> <rule name="Index"> <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/{R:1}" /> </rule> </rules> </rewrite> <httpErrors errorMode="Detailed" /> </system.webServer> </configuration>

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.