Hi,
I am trying to set up my site to have nicely formatted URLs. I am trying to get a rewrite rule to transfer:
http://micasa.ie/BiancaBed-134/BiancaRange-rn/43.htmto
http://micasa.ie/prodView.php?id=134&frm=rn&refId=43I am using the following .htaccess file:
Code:
Options +FollowSymLinks
RewriteEngine On
RewriteRule ^[A-Z0-9_-]+-([0-9]+)/[A-Z0-9_-]+-([A-Z])/([0-9]+)\.htm$ prodView.php?id=$1&frm=$2&refId=$3 [L,NC]
There are no problems with permissions and stuff because I have gotten simpler versions of this to work. Can anybody see what Im doing wrong?
I get a page not found error when I use my formatted URL.
Thanks:
Beedge