I\'m trying to redirect the links on my domain. What I\'m trying to achieve is: When the user clicks on a link to
mydomain.com/index.php?dir=myfolder>
mydomain.com/index.php?dir=myfolder
To prettify URLs of the format mydomain.com/index.php?dir=myfolder as mydomain.com/myfolder, try the following rewrite rule in your .htaccess file:
mydomain.com/myfolder
.htaccess
RewriteEngine on RewriteRule ^([^/\.]+)/?$ /index.php?dir=$1 [L]