web.config rules for everything

Don’t forget the basics:

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <rewrite>
            <rules>
                <rule name="Redirect to HTTPS" stopProcessing="true">
                    <match url="(.*)" />
                    <conditions>
                        <add input="{HTTPS}" pattern="^OFF$" />
                    </conditions>
                    <action type="Redirect" url="https://{HTTP_HOST}/{R:1}" redirectType="Permanent" />
                </rule>    
            </rules>
        </rewrite>
    </system.webServer>
</configuration>
Continue reading web.config rules for everything

Domain Names = Real Estate

weakest-linkLike your office or your house; Your domain name is the address where people can find you. Like real estate, not all addresses are available, and some addresses are more expensive than others.

It used to be easy: You registered a .com for international business, .org for organisations, or .nl if you only operate in the Netherlands, plus Continue reading Domain Names = Real Estate