Hi guys
I have two URLs that I would like to rewrite:
/artist.php?name=x
=>/x
/albums.php?title=y
=>/y
This is what I put in the .htaccess file:
RewriteEngine On
RewriteRule ^([a-zA-Z0-9_-]+)$ artist.php?name=$1
RewriteRule ^([a-zA-Z0-9_-]+)/$ artist.php?name=$1
RewriteRule ^([a-zA-Z0-9_-]+)$ albums.php?name=$1
RewriteRule ^([a-zA-Z0-9_-]+)/$ albums.php?name=$1
How should I edit the file so that the albums.php's URL would be executed as well? (Only the first one is working.) Thanks for your help.