Ok everybody, on the subject of SEO, I suggest adding 301 redirects to avoid canonical problems (www. vs. non-www)
Add this to the bottom of the .htaccess that yellow gives you
Code:
#RewriteCond %{THE_REQUEST} ^.*/index.php#
#RewriteRule ^(.*)index.php$ http://www.yoursite.com$1 [R=301,L]#
RewriteCond %{HTTP_HOST} ^yoursite\.com$ [NC]
RewriteRule ^(.*)$ http://www.yoursite.com$1 [R=301,L]
And add this to the admin .htaccess
Yellow I would suggest incorporating this into the code of your mod since it really is important to SEO.
This way any links that go to yoursite.com or yoursite.com/index.php will be redirected to
www.yoursite.com, and you will gain more pagerank as a result.
Now you can set it up for
www.yoursite.com to go to yoursite.com, and there are mixed views on which is better, all I know is that with ZC www. seems to work better.
Contact me with any questions.