我在我的 CMS 系统中使用了两个 php 文件。第一个接受请求http://mydomain.com/page.php?page=about-us,第二个接受http://mydomain.com/otherpage.php?page=additional-page。
我想放入我的 .htaccess 文件
RewriteRule ^([a-z0-9-]+)$ page.php?page=$1
RewriteRule ^([a-z0-9-]+)$ otherpage.php?page=$1
并让这两个规则都起作用。你能帮忙吗?