PDA

View Full Version : Site Issues Related To Having WWW In URL


gdavis480
07-03-2012, 01:21 AM
When i go to my website without www it will keep my longin info and such but my shoutbox wont load if i then proceed to add www it will then make me re log on and the shoutbox will work does anyone know why this is happening

gdavis480
07-04-2012, 04:26 AM
Anyone Have Any Suggestions

Brexen
07-05-2012, 05:03 PM
Build a htaccess file which 301 redirects all connections from www.sitename.com to sitename.com


Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www.sitename.com$
RewriteRule (.*) http://sitename.com/$1 [R=301,L]


That's how I overcame it :)

gdavis480
07-05-2012, 08:38 PM
worked like a charm thanks alot