Okay, I'm really not as pathetic as the title makes it seem, but it got your attention! I need help getting this to work! Any help with greatly appreciated! How can I sucessfully implement the removal of the www. from my domain and also clean up the URL at the same time? Here are the two statements I'm using: #Remove WWW from domain RewriteCond %{HTTP_HOST} ^www.domain.com$ [NC] RewriteRule ^(.*)$ http://domain.com/$1 [R=301] #clean up URL RewriteCond %{SCRIPT_FILENAME} ^(.*)/(.*)$ RewriteRule ^(.*)/(.*)$ /index.php?$1&x=$2 Anyone?
#Remove WWW from domain RewriteEngine On RewriteCond %{HTTP_HOST} ^www.domain.com$ [NC] RewriteRule ^(.*)$ http://domain.com/$1 [R=301,L]