Hi
i want to redirect the my domain urls reputationsolutions4u[dot] & reputationsolutions4u[dot]/index.html to www.reputationsolutions4u.com
I have tried adding commaind in .htaccess file but unable to do so. If this persists search engines will consider all these urls as different ones . Would really appreciate if you can provide proper instructions that can help get rid of this problem
This is what i used in .htaccess file after finding this kind of info on the internet forums
"
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTP_HOST} !^reputationsolutions4u.com$ [NC]
RewriteRule ^(.*)$ http://www.reputationsolutions4u.com$1 [L,R=301]
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
RedirectMatch 301 /index.aspx(.*) http://www.reputationsolutions4u.com$1
</IfModule>
# END WordPress
"
i want to redirect the my domain urls reputationsolutions4u[dot] & reputationsolutions4u[dot]/index.html to www.reputationsolutions4u.com
I have tried adding commaind in .htaccess file but unable to do so. If this persists search engines will consider all these urls as different ones . Would really appreciate if you can provide proper instructions that can help get rid of this problem
This is what i used in .htaccess file after finding this kind of info on the internet forums
"
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTP_HOST} !^reputationsolutions4u.com$ [NC]
RewriteRule ^(.*)$ http://www.reputationsolutions4u.com$1 [L,R=301]
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
RedirectMatch 301 /index.aspx(.*) http://www.reputationsolutions4u.com$1
</IfModule>
# END WordPress
"