0
已經看過所有關於此的其他帖子,但似乎無法使其工作。有很多不相關的原因,爲什麼我無法更改Joomla配置,項目等,但無論如何,似乎這些應該工作,無論如何。htaccess重定向被「忽略」
總之,我想與的itemid = 30在任何鏈接重定向到給出的一個。我究竟做錯了什麼?前三個是我試過的,最後一行是正在工作的。
RedirectMatch 301 ^Itemid=30$ http://inside.beta.oursite.com/index.php?option=com_cware&view=courses&Itemid=125
redirect 301 index.php?option=com_cware&view=courses&Itemid=30 http://inside.beta.oursite.com/index.php?option=com_cware&view=courses&Itemid=125
RewriteEngine On
RewriteCond %{QUERY_STRING} Itemid=30
RewriteRule ^Itemid=30/$ index.php?option=com_content&view=article&id=106&Itemid=121 [R=301]
# If query string contains "username=admin"
RewriteCond %{QUERY_STRING} username=admin
# Block it without mercy
RewriteRule .* - [F]
我在http://stackoverflow.com/questions/10135702/301-redirect-from-url-with-query-string-to-new-domain-with-different-query-找到解決方案 - 嚴格的,但不明白爲什麼重定向301 ....不工作,因爲我低頭並且它應該。 – GDP 2013-03-04 19:35:10