Redirect .htaccess

Hi , i want to Redirect my page abc.com/abc.html & abc.com/abcd . can any one tell me how to do it with .htaccess ?

you mean, you want to rewrite all /xyz.html pages as /xyz ?

Hi,
You should add this code in your .htaccess file then you can get Pretty URLs

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ $1.html [L,QSA]

jj,

Sorry, I don’t understand your question. What do you want to redirect them to?

If yours is a mod_rewrite question, you can learn almost all you’ll ever need to know by going through my signature’s tutorial (with its coding examples). Take the time to learn and you’ll be rewarded!

Regards,

DK