I just want to forward someone from domain.com to www.domain.com
I was trying to use .htaccess command:
Options +FollowSymlinks
RewriteEngine on
rewritecond %{http_host} ^domain.com [nc]
rewriterule ^(.*)$ http://www.domain.com/$1 [r=301,nc]
My problem is that it is actually forwarding me to www.domain.com/index.php. When it does this, all the images are also forward there, so I get:
img src=http://www.domain.com/index.php/image1.jpg
I tried removing the $1, but then it doesn't forward you to the proper page. Help please
I was trying to use .htaccess command:
Options +FollowSymlinks
RewriteEngine on
rewritecond %{http_host} ^domain.com [nc]
rewriterule ^(.*)$ http://www.domain.com/$1 [r=301,nc]
My problem is that it is actually forwarding me to www.domain.com/index.php. When it does this, all the images are also forward there, so I get:
img src=http://www.domain.com/index.php/image1.jpg
I tried removing the $1, but then it doesn't forward you to the proper page. Help please