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.
是否可以将 www.mydomain.com/views/pages/contact.php 等子目录重写为 www.mydomain.com/contact.php
到目前为止我得到的是这个。
RewriteRule ^/(.+)$ /views/pages/$1
不幸的是,这并不能解决问题。
RewriteRule ^p/(.+)$ /views/pages/$1
那个有效,但仅适用于目录。
前导斜杠在 .htaccess 中不起作用,这应该起作用:
RewriteRule ^(?!views/pages/)(.*)$ /views/pages/$1 [L,NC]