how can i make the default url of my website without the 'www'
if someone enter www.mysite.com if would take him to mysite.com
just like on serverfault.com
i use iis7 and windows server 2008
how can i make the default url of my website without the 'www'
if someone enter www.mysite.com if would take him to mysite.com
just like on serverfault.com
i use iis7 and windows server 2008
This is normally done via redirection
Most commonly the www dns entry is just a CNAME to the domain entry - although this doesn't necessarily need to be true, just a web server to redirect the request needs to be listening on that IP
First, go to the DNS manager on your server and find your Forward Lookup Zone
and from the context menu, add a new Host (A or AAAA)...
. Leave the first box (host name) blank, but be sure to add the correct ipaddress for the binding. Click "Okay".
Now, open up IIS7. Find your website in the list of "Sites" for your webserver. Right-click on it and select Edit Bindings...
. When the "Site Bindings" dialogue appears, click on Add...
. Now, select your IP address and port, but in the Host Name
box, put the name of your website WITHOUT the www at the front. Click Okay!
That's it! Now, open up IE and browse to http://mywebsite.com.