This is the original URL
http://localhost/naranjeshaltd/index.php?url=home
and I want redirect it to
http://localhost/naranjeshaltd/home
I have tried this htaccess code but it is redirecting page to http://localhost/xampp
Options +FollowSymLinks
RewriteEngine on
RewriteBase /naranjeshaltd
RewriteRule ^(.*)$ /index.php?url=$1 [L]
But when I use this htaccess code everything working fine
Options +FollowSymLinks
RewriteEngine on
RewriteBase /naranjeshaltd
RewriteRule home$ index.php?url=home
but its a static method, how can I do this for all pages?