RewriteEngine on
RewriteRule account$ account.php [Nc]
RewriteRule (.+)$ store.php [Nc]
当我访问http://localhost/project/account时,应将其重定向到account.php
如果我访问http://localhost/project/sun-glass,则应将其重定向到store.php
答案 0 :(得分:1)
限制现有文件和目录的最后一条规则:
Options -MultiViews
RewriteEngine on
RewriteRule account/?$ account.php [NC,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . store.php [L]