Site Development and Help Site Discussions, Suggestions, and Help

Site Redirection

Thread Tools
 
Search this Thread
 
Old 04-24-2009, 08:10 PM
  #1  
New Member
Thread Starter
 
floppy's Avatar
 
Join Date: 04-07-09
Location: Jackson, MS
Posts: 39
Likes: 0
Received 0 Likes on 0 Posts
Site Redirection

In my personal opinion of course, you need to properly redirect the site to a non www or just www for everyone. This way if I visit https://www.cobaltss.net I get https://www.cobaltss.net or vice versa.

You can easily do this through the .htaccess file. It would look a little something like this

PHP Code:
RewriteBase /
RewriteCond %{HTTP_HOST} ^clanthemes.com$
RewriteRule ^(.*)$ http://www.clanthemes.com$1 [R=301,L]
RedirectPermanent http://clanthemes.com http://www.clanthemes.com 
Prolly best placed after all the rewrites in the .htaccess.

I also noticed that you have an index.php issue. That should be redirected to the main site. You can visit www.clanthemes.com/index.php to see what I mean. This is best for SEO purposes and bookmarks etc.

The complete code for the .htaccess looks something like this

PHP Code:
#----Redirect index.php---------------------
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.phpHTTP/
RewriteRule ^index\.phphttp://www.clanthemes.com/ [R=301,L]
RewriteBase /
RewriteCond %{HTTP_HOST} ^clanthemes.com$
RewriteRule ^(.*)$ http://www.clanthemes.com$1 [R=301,L]
RedirectPermanent http://clanthemes.com http://www.clanthemes.com 
Of course modified if you choose to go non-www.

Last edited by floppy; 04-24-2009 at 08:10 PM. Reason: Automerged Doublepost
Old 04-24-2009, 08:15 PM
  #2  
New Member
 
ProJecTX's Avatar
 
Join Date: 12-05-06
Location: Irvine, Cali
Posts: 112
Likes: 0
Received 0 Likes on 0 Posts
why redirect when you can use DNS...
Old 04-24-2009, 08:17 PM
  #3  
New Member
Thread Starter
 
floppy's Avatar
 
Join Date: 04-07-09
Location: Jackson, MS
Posts: 39
Likes: 0
Received 0 Likes on 0 Posts
.httaccess gives much more redirect options than DNS, but in this situation they both may work.
Old 04-24-2009, 08:29 PM
  #4  
Senior Member
 
riko540's Avatar
 
Join Date: 01-02-08
Location: South Jersey
Posts: 2,860
Likes: 0
Received 1 Like on 1 Post
Its funny I just now noticed that.
Related Topics
Thread
Thread Starter
Forum
Replies
Last Post
Delta coupe
Pictures & Videos
1
09-30-2015 08:11 AM
MrInsanityWolf
New Members Check In!!
3
09-29-2015 04:54 PM
Silverbullet333
New Members Check In!!
1
09-22-2015 10:55 AM
Joe09
New Members Check In!!
6
09-18-2015 09:22 AM



Quick Reply: Site Redirection



All times are GMT -4. The time now is 12:37 AM.