问候,
我刚刚将一个网站从IIS迁移到Apache,并且在重定向索引文件时遇到了一些麻烦,但没有造成无限循环。
这两者都会导致循环 -
重定向301 /index.tt.htm /index.php
重定向301 /index.htm http://www.foo.com/
以下是我当前.htaccess的副本。有人能帮我吗?我有一堆指向http://www.foo.com/index.htm的链接,我想301重定向到http://www.foo.com/
RewriteEngine On
########## Begin - Rewrite rules to block out some common exploits
## If you experience problems on your site block out the operations listed below
## This attempts to block the most common type of exploit `attempts` to Joomla!
#
# Block out any script trying to set a mosConfig value through the URL
RewriteCond %{QUERY_STRING} mosConfig_[a-zA-Z_]{1,21}(=|\%3D) [OR]
# Block out any script trying to base64_encode crap to send via URL
RewriteCond %{QUERY_STRING} base64_encode.*\(.*\) [OR]
# Block out any script that includes a <script> tag in URL
RewriteCond %{QUERY_STRING} (\<|%3C).*script.*(\>|%3E) [NC,OR]
# Block out any script trying to set a PHP GLOBALS variable via URL
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
# Block out any script trying to modify a _REQUEST variable via URL
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
# Send all blocked request to homepage with 403 Forbidden error!
RewriteRule ^(.*)$ index.php [F,L]
#
########## End - Rewrite rules to block out some common exploits
# Uncomment following line if your webserver's URL
# is not directly related to physical file paths.
# Update Your Joomla! Directory (just / for root)
# RewriteBase /
########## Begin - Joomla! core SEF Section
#
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/index.php
RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.feed|\.pdf|\.raw|\.cfm|/[^.]*)$ [NC]
RewriteRule (.*) index.php
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
#
########## End - Joomla! core SEF Section
Redirect 301 /a /administrator
答案 0 :(得分:6)
你为什么要这样做?为什么不将index.php作为有效的索引扩展名添加到vhost / config
DirectoryIndex index.html index.php
然后删除HTML文件&gt;
或
DirectoryIndex index.php
答案 1 :(得分:3)
我猜你的目录索引设置为index.html,它发生在index.php之前。然后,您的http://www.foo.com/被解释为http://www.foo.com/index.html,并被重定向到http://www.foo.com/ - 因此循环。
Here你得到了一些关于重定向不同方式的信息。
答案 2 :(得分:1)
您需要像这样检查REQUEST_URI的值:
RewriteCond %{REQUEST_URI} ^/index.htm$ # If REQUEST_URI == "/index.htm"
RewriteRule (.*) / [R=301,L] # Then 301 redirect to "/"
答案 3 :(得分:0)
我同意Kender关于重定向循环的评论。
可能是圆的方式DirectoryIndex notindex.html
以及您的重定向,然后将实际首页放在notindex.html中。如果该页面确实存在,我不清楚使用/index.html的人有什么问题?
答案 4 :(得分:0)
我还不允许添加超链接,因为我是新用户,因此当我输入“foo”时,只需假设整个网址...
要将foo / index.php重定向到没有循环的foo /,请使用其他重写规则:
RewriteRule index.php foo/ [R=301]
您可能需要使用/index.php,具体取决于您的RewriteBase设置为什么(以及index.php中有多少个目录)。