簡體   English   中英

Joomla 301 htaccess重定向不起作用

[英]Joomla 301 htaccess redirects not working

我要添加301重定向到joomla網站的htaccess文件。 但是這些重定向中的任何一個似乎都不起作用,我通過更改URL進行了很多嘗試,等等,但是沒有運氣,這是我的htaccess文件。

##  Can be commented out if causes errors, see notes above.
Options +FollowSymLinks

#
#  mod_rewrite in use

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!
#
## Deny access to extension xml files (uncomment out to activate)
#<Files ~ "\.xml$">
#Order allow,deny
#Deny from all
#Satisfy all
#</Files>
## End of deny access to extension xml files
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]
# Redirect addresses which are not www.festsortimentet.dk
RewriteCond %{HTTP_HOST}   !^www\.festsortimentet\.dk$ [NC]
RewriteRule ^(.*)$         http://www.festsortimentet.dk/$1 [R=301,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|/[^.]*)$  [NC]
RewriteRule (.*) index.php
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
#
########## End - Joomla! core SEF Section
redirect 301 /index.php/jvthbergskedk/jukeboks http://www.festsortimentet.dk/jukeboks.html
redirect 301 /index.php/jvthbergskedk/softice http://www.festsortimentet.dk/softice.html
redirect 301 /index.php/jvthbergskedk/pdf http://www.festsortimentet.dk/slush-ice-popcorn/slush-ice.html
redirect 301 /index.php/jvthbergskedk/hoppeborg http://www.festsortimentet.dk/hoppeborg.html
redirect 301 /index.php/jvthbergskedk/telt http://www.festsortimentet.dk/Telt-Borde-Stole.html
redirect 301 /index.php/jvthbergskedk/mad http://www.festsortimentet.dk/jukeboks.html
redirect 301 /index.php/levering http://www.festsortimentet.dk/levering.html
redirect 301 /index.php/jvthbergskedk http://www.festsortimentet.dk/lejebetingelser.html
redirect 301 /index.php/kontakt http://www.festsortimentet.dk/kontakt/festsortimentet-aalborg.html
redirect 301 /index.php/component/virtuemart/?page=shop.browse&category_id=95 http://festsortimentet.dk/jukeboks.html
redirect 301 /index.php/component/virtuemart/?page=shop.browse&category_id=104 http://festsortimentet.dk/softice.html
redirect 301 /index.php/component/virtuemart/?page=shop.browse&category_id=120 http://festsortimentet.dk/softice/softicemaskiner.html
redirect 301 /index.php/component/virtuemart/?page=shop.browse&category_id=121 http://www.festsortimentet.dk/softice/tilbehor.html
redirect 301 /index.php/component/virtuemart/?page=shop.browse&category_id=106 http://www.festsortimentet.dk/slush-ice-popcorn/slush-ice.html
redirect 301 /index.php/component/virtuemart/?page=shop.browse&category_id=122 http://www.festsortimentet.dk/

舉例來說-當用戶附帶http://www.festsortimentet.dk/index.php/component/virtuemart/?page=shop.browse&category_id=95網址時,我寫了一個重定向,並重定向到http://festsortimentet.dk/jukeboks。 html,但無法正常工作。 誰能幫我。 謝謝

您不能使用mod_alias redirect指令匹配查詢字符串。 像這樣將您的規則轉換為mod_rewrite

RewriteCond %{QUERY_STRING} ^page=shop\.browse&category_id=95$
RewriteRule ^index\.php/component/virtuemart/?$ http://festsortimentet.dk/jukeboks.html? [NC,L,R]

在joomla 3.x中也有對此的管理:

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM