RobBroekhuis
Technical User
I'm trying to put a rewrite rule in place - for a specific file for now, to be broadened more generally when the specific one works. I have in plants/.htaccess:
A request for /plants/AcantMolli fails with a 404. If I change the rule to
a request for /plants/AcantMollis produces the expected result. Is the rewrite engine clashing with other Apache mechanisms for disambiguating mis-spelled requests?
Rob
Code:
RewriteEngine on
RewriteBase /plants
RewriteRule ^AcantMolli$ AcantMolli.php
A request for /plants/AcantMolli fails with a 404. If I change the rule to
Code:
RewriteRule ^AcantMollis$ AcantMolli.php
a request for /plants/AcantMollis produces the expected result. Is the rewrite engine clashing with other Apache mechanisms for disambiguating mis-spelled requests?
Rob