Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个这样的URI:
http://my.domain.com/clientarea/verify/
我希望它重写这个:
http://my.domain.com/verify.php
我的意思是当第一个 URi 被调用时,它会在根路径显示 verify.php 的结果。
有谁知道我该怎么做?!
在后面添加这个RewriteEngine on:
RewriteEngine on
RewriteRule ^clientarea/verify/$ /verify.php