I'm just trying to provide some backwards compatibility to on old version of my PHP database.
I've got the following RewriteRule:
RewriteRule ^/search_from_listings\.php\?artist_id=([0-9]+)$ /?artist&id=$1 [R]
which I want to direct requests like:
to
However, I just get a 404. cannot find 'search_from_listings.php'.
Does anyone know why its returning 404 in preference to following the RewriteRule?
Cheers,
(Apache 2.0.54)
I've got the following RewriteRule:
RewriteRule ^/search_from_listings\.php\?artist_id=([0-9]+)$ /?artist&id=$1 [R]
which I want to direct requests like:
to
However, I just get a 404. cannot find 'search_from_listings.php'.
Does anyone know why its returning 404 in preference to following the RewriteRule?
Cheers,
(Apache 2.0.54)