I want to rewrite the following: http://www.example.com/template/school.php?SchoolName=IMD
to
http://www.example.com/template/school/IMD/
Is there any problem with this:
Options FollowSymLinks -Indexes +MultiViews
RewriteEngine On
RewriteBase /template/
RewriteRule ^school/(.*)/$ school.php?SchoolName=$1 [QSA,L,NC]
I have tried everything that was available in multiple domains but somehow the URL rewrite in .htaccess is not working. Have already spent considerable time on this, any help is appreciated.