.htaccess 使用htaccess重写精确文件夹名称的规则

xghobddn  于 2023-01-13  发布在  其他
关注(0)|答案(1)|浏览(126)

请帮助我执行下面的重写规则。我想显示https://example.org/signupv3.php文件。

# Turn Rewrite Engine On
RewriteEngine on

# Rewrite for signup
RewriteRule ^signup v3.php [NC,L]

工作。但所有其他请求后/signup/signupshttps://example.org/signup/example/whatever显示v3.php以及。我需要的重写规则只为该确切的文件夹名称。
谢谢你的帮忙!

7kqas0il

7kqas0il1#

RewriteRule ^signup/?$ v3.php [NC,L]

谢谢@anubhava

相关问题