Hi !
I am stuck at a situation, and have been trying hard, but nothing worked.
Let see if some on can help me here ASAP.
Ok, there is the scene.
I have a site, and I want the urls to be SEO friendly. There are 3 scripts, like
show_location.php
show_bank.php
show_br.php
The problem is that, in all these, the inputs are all text and like each other.
so if I have :
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([-a-zA-Z-0-9.,+'()]+)$ show_br.php?branch=$1 [L]
RewriteRule ^([-a-zA-Z-0-9.,+'()]+)$ show_bank.php?bank=$1 [L]
RewriteRule ^([-a-zA-Z-0-9.,+'()]+)$ show_location.php?location=$1 [L]
its not working.
Please support me with this !
Thanks
Zeeshan