使用重写规则跳过URl中的目录

时间:2015-03-13 15:25:46

标签: .htaccess mod-rewrite

我的网页位于我的服务器的example / files / page.php中。我想使用重写规则来跳过URl中的/ files目录,以便当用户键入example / page.php时能够查看page.php的内容。如何使用重写规则来实现这一目标?

1 个答案:

答案 0 :(得分:0)

将此添加到您网站的 root 目录中的.htaccess。

RewriteEngine on

RewriteCond %{REQUEST_FILENAME} !-d # not a dir
RewriteCond %{REQUEST_FILENAME} !-f # not a file
RewriteRule ^(example)/(.*)$ /$1/files/$2 [NC,L]