htaccess将根目录中的所有文件重定向到子目录中的相应页面

时间:2013-09-21 12:29:43

标签: php apache .htaccess redirect mod-rewrite

我有几页

http://localhost/template

如home.php,about.php,contact.php

http://localhost/template/sr我的网页名称相同。

这就是我在root .htaccess文件中的内容

RewriteEngine on
RedirectMatch 301 ^/$ http://localhost/template/sr/

我的error.log文件报告:

[localhost/sid#923dd8][rid#dd70b0/initial] [perdir C:/xampp/htdocs/template/] pass through C:/xampp/htdocs/template/
[localhost/sid#923dd8][rid#ddd0c8/subreq] [perdir C:/xampp/htdocs/template/] pass through C:/xampp/htdocs/template/index.php
[localhost/sid#923dd8][rid#ddb0c0/initial] [perdir C:/xampp/htdocs/template/] pass through C:/xampp/htdocs/template/
[localhost/sid#923dd8][rid#ddd0c8/subreq] [perdir C:/xampp/htdocs/template/] pass through C:/xampp/htdocs/template/index.php

此设置不重定向我不断从根目录获取页面。

1 个答案:

答案 0 :(得分:4)

如果您尝试将页面重定向到子目录中的相应页面:

Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /

RewriteRule ^([^/]+)/?$ /template/sr/$1 [L]