How does Stack Overflow (and other web sites) remove the 'www' prefix when it's entered as part of a URL?
Is it a redirect, a rewrite or something else entirely?
Update: I'd specifically like to know in the context of IIS 6
|
3
|
|||||||||
|
|
|
Firing up Fiddler, we can see that the server responses with a "301 Moved Permanently" status and refers it to http://stackoverflow.com . Since StackOverflow is hosted on Windows 2k8 IIS7 they set up this redirect straight away in IIS7. FYI: If you are a .NET developer you might know "Respose.Redirect" , this creates a 302 Object Moved status. Search engines like 301 status codes in this case better, because they know they should not come back to www.stackoverflow.com in the future. |
||
|
|
|
|
You can do what mod_rewrite does for Apache, with a comparable URL rewriter for IIS. A good one is IIRF. The rule is:
You can also wildcard the hostname like so:
IIRF is free to use. |
||
|
|
|
|
You need a default dns entry added pointing to your web server. ping site.com and verify ip is pointing to webserver, if not you need to get the default DNS entry added. for a basic setup: You'll have to add host headers http://www.visualwin.com/host-header/ Create 1 site with a hostheader of www.site.com In the Home Directory tab, set it to a permanent redirect to http://site.com Create a 2nd site with a host header of site.com If you want www.site.com/file.html to redirect to site.com/file.html you will need a more advanced setup with something like ISAPI_Rewrite or use custom 404 pages to do it. |
||
|
|
|
|
This is going a long way back, but as far as I know this is a DNS setup. I think you don't need to specify a HOST address (WWW is the name of the host (or computer/cluster...) that the site resides on/in.). I think you can then set it up to send all requests to a default host. Not 100% sure, but check out what is possible with DNS. Hope that helps or at least get's you going in the right direction. |
||
|
|
|
|
An easy way to do this is using the Apache "Redirect" directive:
The Redirect directive automatically preserves anything following the |
||
|
|
|
|
You can do it several ways, using mod_rewrite and redirecting is my favorite. Something like this:
|
||
|
|
|
|
On Apache, it looks like this (inside an .htaccess file):
|
||
|
|
|
|
redirect. the sub-domain "www.stackoverflow.com" would simply redirect to "stackoverflow.com". |
||