Hi guys, I need a set of fresh eyes on this. I'm having a tough time spotting the problem.
In folder X I have an .htaccess file with the following two lines in it:
RewriteEngine on
RewriteRule ^([A-Za-z0-9\.-]+)/?$ item-display.php?bibid=$1 [NC,L]
My interpretation is that anything in that directory will then be redirected to the item-display page. The problem is that on the item-display page, echoing out the value of bibid outputs 'display-item'. So somehow I'm redirecting from: http://localhost/test/cat/item/14056a to: http://localhost/test/cat/item/item-display.php?bibid=item-display
Any ideas?
Cheers