How to redirect with 123-reg hosting

Teenestania

New Member
Here's what I have... (works fine with my GoDaddy hosting)\[code\]<system.webServer><rewrite> <rules> <rule name="Remove WWW prefix" > <match url="(.*)" ignoreCase="true" /> <conditions> <add input="{HTTP_HOST}" pattern="^www\.mywebsite\.co.uk" /> </conditions> <action type="Redirect" url="http://mywebsite.co.uk/{R:1}" redirectType="Permanent" /> </rule> </rules></rewrite></system.webServer>\[/code\]But this doesn't work with 123-reg. I'm pretty sure that 123reg has the URL Rewrite module installed for IIS, right?
 
Top