I am in the process of trying to get all the channels, links and everything redirected to help with rankings and such. I have used all the info I have found here with searches and created my .htaccess file and just not sure if things are working the way they are supposed to.
First off, here is my .htaccess file. I may be trying to do to much, not sure
http://www.heartlandoutdoors.com
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_HOST} ^heartlandoutdoors\.com$ [NC]
RewriteRule ^(.*)$ <a href="http://www.heartlandoutdoors.com/$1">http://www.heartlandoutdoors.com/$1</a> [R=301,L]
Redirect /heartlandoutdoors.com/index.html <a href="http://www.heartlandoutdoors.com">http://www.heartlandoutdoors.com</a>
# Removes index.php
RewriteCond $1 !\.(gif|jpe?g|png)$ [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [L]
# If 404s, "No Input File" or every URL returns the same thing
# make it /index.php?/$1 above (add the question mark)
</IfModule>My goal is to make sure everything has a www and the index.php is removed from everything. So far, the www redirect is working. But everything still has index.php in the url. I noticed all my nav_links have index.php/template and all my templates have index.php in them. Do I need to go thru and change all those? I did remove the index.php from the General Config.
Anyway, I hope this enough info for everyone. I am not very profitiant in this.