Hi,
Seems this should be simple but I'm ripping my hair out here and would love some help by you knowledgeable folk!
As far as htaccess goes I'm a cut-and-paste coder so bare with me..
I'm using this code to divert reqeusts for example.com to www.example.com
RewriteCond %{HTTP_HOST} ^example.com
RewriteRule (.*) http://www.example.com/$1 [R=301,L]
However, when I try example.com/about.php I get sent to www.example.com, without the rest of the url. Am I missing something?