我已使用htaccess从我网站的所有页面禁用.php扩展名。现在我的网站可以导航为
现在,在网站的所有页面中,对于某些页面,我需要在URL中添加前缀,如
如何使用htaccess并且不创建名为" mypages"?
的子目录答案 0 :(得分:1)
您可以在站点根目录中使用它.htaccess:
RewriteEngine On
## some pages need to have mypages/
RewriteRule ^mypages/([\w-]+)/?$ $1.php [L,NC]
## for rest internally rewrite /dir/file to /dir/file.php
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^(.+?)/?$ $1.php [L]