Forum Moderators: phranque

Message Too Old, No Replies

IIS Redirects without IP address

Can't use standard 301 redirect process

         

thedagda

5:15 pm on Jan 19, 2005 (gmt 0)

10+ Year Member



I need to setup a 301 re-direct from:
[example.com...] to [example.com...]

In everything that I've found so far tells me that I need to create another website through IIS and redirect it from there. The problem is, I don't have an IP address to spare at the moment, so this option doesn't work.

Are there any other options to setup a 301 redirect through IIS without creating another website?

Any suggestions or help would be greatly appreciated.

Thanks,

Conor

[edited by: Woz at 11:16 pm (utc) on Jan. 20, 2005]
[edit reason] examplified URLs [/edit]

thedagda

7:48 pm on Jan 20, 2005 (gmt 0)

10+ Year Member



Through more research and insights from other forums, it doesn't look like there is a good way to accomplish this task. You will have to setup another IP address-based site to redirect from.

pageoneresults

8:06 pm on Jan 20, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



You could always purchase a program like ISAPI_Rewrite and easily handle the 301s at the site level. It requires the host to install a global httpd.ini and then each site on that server wishing to use the ISAPI functionality can drop a local httpd.ini file in their root and have complete control over 301s and other rewrite issues.

It's as simple as dropping this code into the .ini file...

[ISAPI_Rewrite]

RewriteCond Host: ^example\.com
RewriteRule (.*) http\://www\.example\.com$1 [I,RP]

thedagda

8:25 pm on Jan 20, 2005 (gmt 0)

10+ Year Member



You know, I just heard about that rewrite tool not long ago too. That actually sounds like the best way to handle this. It would have cost us much more than $50 reconfiguring a couple of websites to free-up an addtional IP address.

Thank you very much for the suggestion.

Conor

bakedjake

8:31 pm on Jan 20, 2005 (gmt 0)

WebmasterWorld Administrator 10+ Year Member Top Contributors Of The Month



IIS supports multiple websites per single IP with its host header option.

thedagda

8:48 pm on Jan 20, 2005 (gmt 0)

10+ Year Member



I found that as well, but I'm trying to setup the 301 redirect for search engine optimization reasons. We have been indexed by our [example.com...] address and want to indexed as [example.com....]

We don't want to loose the PR we've gotten so far and also don't want to end up in the sandbox as this is a newer site.

Thanks for the suggestion though.

Conor

[edited by: Woz at 11:38 pm (utc) on Jan. 20, 2005]
[edit reason] examplified URLs [/edit]

pageoneresults

8:51 pm on Jan 20, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



I found that as well, but I'm trying to setup the 301 redirect for search engine optimization reasons. We have been indexed by our [example.com...] address and want to indexed as [example.com.<...]

Be careful here. What percentage of inbound links are using the non www version of your domain? In some instances, you may want to do the opposite and redirect www to the non www.

Expect to see some downtime in the SERPs during the 301 period. You may also want to make it a point to track down all of those non www links and see if you can get them updated.

thedagda

9:57 pm on Jan 20, 2005 (gmt 0)

10+ Year Member



The percentage of people going to the non www is fairly high at the moment, but it is very relative. We will be kicking of a link campaign soon that will direct everyone to the www site.

We will also be tracking those who are linking to the wrong site. Luckily, we aren't talking about a huge number of links here.

The fall-off is not a huge concern as the site is still new and not yet being promoted. We want to setup the 301 now so we don't lose any ground, then continue moving forward with the www. site.

pageoneresults

10:13 pm on Jan 20, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



The percentage of people going to the non www is fairly high at the moment, but it is very relative.

Any idea how that occurred? Just asking as it may help you find the source and correct it. Make sure there are no internal links pointing to the root domain (http://example.com/).

Just for reference, the [example.com...] is referred to as a sub-domain. The [example.com...] is referred to as the root domain.

thedagda

10:38 pm on Jan 20, 2005 (gmt 0)

10+ Year Member



This happened because we are dealing with some non-computer savvy people. A lot of the people that will be linking to us do not know enough about the web to know the difference between links.

Part of this link campaing is to educate them on the proper way to link and what address to use.

The people linking to us are select group of customers, so we have a very open communication line with them. We will have a fair amount of control when setting up all the links and can have them make changes quickly.