How to redirect my PlusNet domain to another site?
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Plusnet Community
- :
- Forum
- :
- Help with my Plusnet services
- :
- Everything else
- :
- How to redirect my PlusNet domain to another site?
How to redirect my PlusNet domain to another site?
21-08-2009 8:36 AM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
I'm helping someone set up their PlusNet account. They already have a successful website and would like to redirect all traffic from www.THATDOMAIN.plus.com to www.MYGREATDOMAIN.org.uk.
I've looked around but can't find the info.
Is there a control panel setting for this? Or do I need to set up a redirect using .htaccess etc?
Thx,
Pete
Re: How to redirect my PlusNet domain to another site?
21-08-2009 8:42 AM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
I don't believe that this is possible on Plusnet webspace (I just checked my account and couldn't see any way of doing it and Chris confirms it's not possible).
Re: How to redirect my PlusNet domain to another site?
21-08-2009 8:53 AM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Quote from: Jameseh I don't believe that this is possible on Plusnet webspace...
Can't I just create a .htaccess file with:
Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*) http://www.mygreatdomain.com/$1 [R=301,L]
Or does that not apply in this situation, where mygreatdomain.com isn't hosted at PlusNet?
...oh and thanks for the reply.

Re: How to redirect my PlusNet domain to another site?
21-08-2009 9:36 AM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Re: How to redirect my PlusNet domain to another site?
21-08-2009 10:59 AM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
.htaccess file in the htdocs directory containing...
Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*) http://www.domain.com/$1 [R=301,L]
The pages then error with, "Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, webmaster@plus.net and inform them of the time the error occurred, and anything you might have done that may have caused the error. More information about this error may be available in the server error log."
I contacted Plusnet support who replied as follows...
Unfortunatly we are unable to provide direct support on this.
The login behind it would be a .htaccess file in the htdocs directory.
This should first check to see if the visitor is looking at www.username.plus.com. It should ignore other requests.
mod_rewrite can then perform a 302 redirect.
The first line can be done with RewriteCond rule, the second with a RewriteRule.
The forums may be able to offer more specific support.
I'm still no further forward, so any help would be good.
Re: How to redirect my PlusNet domain to another site?
21-08-2009 11:02 AM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.username.plus.com$
RewriteRule (.*) http://www.domain.com/$1 [R=301,L]
I'd try with and without the +FollowSymLinks bit as I'm not 100% sure if it's needed, or will just cause errors.
Re: How to redirect my PlusNet domain to another site?
21-08-2009 11:08 AM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.username.plus.com$
RewriteRule (.*) http://www.domain.com/$1 [R=301,L]
This works perfectly...much appreciated 🙂
Re: How to redirect my PlusNet domain to another site?
21-08-2009 11:17 AM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator


Re: How to redirect my PlusNet domain to another site?
21-08-2009 11:26 AM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Re: How to redirect my PlusNet domain to another site?
23-08-2009 3:49 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
RewriteCond %{HTTP_HOST} !^www\.domain\.com$ [NC]
RewriteCond %{HTTP_HOST} !^$
will catch domain.com (without the www subdomain), etc, if that's desired. (Strictly speaking, the dots are escaped, though it doesn't make much difference.)
For simple remote redirects, it's slightly more efficient to use the mod_alias directives, so
RewriteEngine On
RewriteRule (.*) http://www.domain.com/$1 [R=301,L]
becomes
Redirect 301 / http://www.domain.com/
which will redirect anything below / to its equivalent location under http://www.domain.com/ or, if you want all requests to redirect to the new index file, use
RedirectMatch 301 ^ http://www.domain.com/
but if it's necessary to manipulate the query string then it takes a rewrite rule, so, for example,
RewriteEngine On
RewriteRule .* http://www.domain.com/? [R=301,L]
removes the query string.
Gabe
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Plusnet Community
- :
- Forum
- :
- Help with my Plusnet services
- :
- Everything else
- :
- How to redirect my PlusNet domain to another site?