http://gopincode.com/pincode.net.in/ANDAMAN_AND_NICOBAR_ISLANDS/NICOBAR/ to http://gopincode.com/pincode.net.in/ANDAMAN_AND_NICOBAR_ISLANDS/NICOBAR.html Help how to change this with .htaccess. Please anyone provide with the code that i have to use in htaccess.
Try this, # add .html file extension RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME}\.html -f RewriteRule ^ANDAMAN_AND_NICOBAR_ISLANDS/(.+)$ /ANDAMAN_AND_NICOBAR_ISLANDS/$1.html [L] Code (markup):
Try this, Options FollowSymLinks RewriteEngine On RewriteCond %{REQUEST_URI} !^.*\.html$ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ %{REQUEST_FILENAME}.html Code (markup): Let me know if it works.