【发布时间】:2013-08-12 01:53:15
【问题描述】:
我正在使用此代码处理奇怪的行为
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
但我不认为问题出在这段代码中。重定向工作良好,但例如,如果我使用此地址 mysite.com/somethingit 重定向到 www.mysite.com/_/something
Joomla htaccess:
RewriteEngine On
RewriteBase /
RewriteRule sitemap\.xml http://www.mojerc.cz/index.php?option=com_xmap&sitemap=1&view=xml [R]
## přesměrování na chybovou stránku 404
ErrorDocument 404 /obchod/poradce/404.html
########## Začátek - Joomla! jaderná SEF část.
#
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/index.php
RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.feed|\.pdf|\.raw|/[^.]*)$ [NC]
RewriteRule (.*) index.php
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
#
########## Konec - Joomla! jaderná SEF část.
########## 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
你们有没有遇到过这种奇怪的事情?
感谢您的帮助。
【问题讨论】:
-
您的 htaccess 是否还有其他规则?
-
不,但是这个 htacces 在根目录下,也许它是由 www 目录中的 htacces 重写的?有标准的 Joomla htaccess 文件。
-
是的,它可能,但是如果 www 是您的根文件夹,那么您的其他 htaccess 将无法工作。 FTP 根文件夹和 Web 根文件夹不是一回事。发布您的 joomla htaccess。
-
我必须使用它,因为在我的虚拟主机上,如果命令位于 www 文件夹中,重定向将不起作用,我的根文件夹是包含所有子域和 www 作为主域的文件夹。用 joomla htaccess 更新了问题
-
把你的
www重定向规则放在RewriteBase /之后,让我知道它是怎么回事,除此之外我没有看到任何规则会产生_,所以也许你的php可以做它。
标签: .htaccess mod-rewrite joomla