Ja, http://blog.mybrain.nl/ is verhuisd naar https://markohoven.com/
Hoe doe je dit nu op een correcte manier?
Binnen IIS kan dit met web.config
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <httpRedirect enabled="true" destination="https://markohoven.com" httpResponseStatus="Permanent" /> <defaultDocument enabled="true"> <files> <clear /> <add value="index.php" /> <add value="index.htm" /> <add value="index.html" /> <add value="default.asp" /> <add value="default.aspx" /> <add value="default.htm" /> <add value="default.html" /> </files> </defaultDocument> <httpErrors errorMode="Custom"> <remove statusCode="404" subStatusCode="-1" /> <error statusCode="404" prefixLanguageFilePath="" path="/index.php" responseMode="ExecuteURL" /> </httpErrors> </system.webServer> </configuration>
Een andere mogelijkheid is in code… Continue reading 301-redirect