No.Its same domain. recently I have changed parmalink structure in wordpress just by putting "/" at the end. Now Google webmasters showing errors. I don't want to change back.so How to forward like I asked above ?
My htaacess is <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress I have to add this code somewhere RewriteEngine on RewriteBase / ### CHECK FOR TRAILING SLASH - Will ignore files RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_URI} !/$ RewriteCond %{REQUEST_URI} !(.*)/$ RewriteRule ^(.*)$ http://digitalpoint.com $1/ [L,R=301] Where can I add..It also seems in my htacess file there are repeated commands.Is it OK.Should I have to remove one of those.