I have a rewrite rule as follows:
RewriteRule ^equipment /equipment.php [L]
It will throw a 500 server error… but if I were to replace the equipment.php with, for example, our contact page contactUs.php it will redirect to the contact page with no problems.
I have other rewrite rules that work fine – but I can’t figure out why this won’t work.
I found the answer.
I needed to do
RewriteRule ^equipment/$ /equipment.php [L]Thanks all.