Hi; I'm currently writing a php code and urls are like sitename.com/index.php?var=abc . i want to create urls like sitename.com/a/abc.html . is it possible to do? Thanks for the comments
Options +FollowSymLinks +Indexes RewriteEngine on RewriteBase / RewriteRule ^a/([^.]+)\.html$ index.php?var=$1 [L]
thanks for the comment but when i have added that code to my .htaccess , nothink has changed my current .htacess is below i'm doing somethink wrong but what?