.htaccess导致内部重定向

时间:2014-10-04 19:02:51

标签: apache .htaccess

我有以下.htaccess文件,它位于/ home / mydir / foo / sites / bar中:

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ /home/mydir/foo/sites/bar/apache/$1 [QSA,L]

当然,我有以下目录w / index.php文件:

ls -l /home/mydir/foo/sites/home/mydir/foo/sites/bar/apache/
index.php

基本上,我的问题是我需要将所有流量重定向到“/ home / mydir / foo / sites / bar / apache /”,但我一直看到

/home/mydir/foo/sites/bar/home/mydir/foo/sites/bar....

...在我的错误日志中。

任何帮助都将不胜感激。

1 个答案:

答案 0 :(得分:0)

我找到了答案。问题在于端点。我将其更改为以下内容:

apache/index.php

现在一切都很好。