Heres my .htaccess file
Code:
RewriteEngine On
RewriteRule ^faq/([a-Z]+)/([0-9]+)$ faq.php?Title=$1&ID=$2
RewriteRule ^/?([a-z]+)$ $1.php [L]
The second line on its own works fine but I cant get the first one to.
I want it so if the url is faq/Hello/1 the page loads faq.php?Title=Hello&ID=1
What have i missed/done wrong?