Please help me on the RewriteRule below. I want to show the v3.php
file for https://example.org/signup
.
# Turn Rewrite Engine On
RewriteEngine on
# Rewrite for signup
RewriteRule ^signup v3.php [NC,L]
Works. But all other requests after /signup
like /signups
or https://example.org/signup/example/whatever
show the v3.php
as well. I need that RewriteRule only for that exact folder name.
Thanks for your help!