所有页面的Joomla 301重定向
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了所有页面的Joomla 301重定向相关的知识,希望对你有一定的参考价值。
RewriteEngine On ########## Begin - 301 Redirect # RewriteCond %{THE_REQUEST} ^[A-Z]{3,9} /([^/]+/)*(index|home).html? HTTP/ RewriteRule ^(([^/]+/)*)(index|home).html?$ http://www.yoursite.com/$1 [R=301,L] # RewriteCond %{THE_REQUEST} !^POST RewriteCond %{THE_REQUEST} ^[A-Z]{3,9} /([^/]+/)*index.php HTTP/ RewriteCond %{SERVER_PORT}>s ^(443>(s)|[0-9]+>s)$ RewriteRule ^(([^/]+/)*)index.php$ http%2://www.yoursite.com/$1 [R=301,L] # RewriteCond %{HTTP_HOST} ^(www.yoursite.com)?$ RewriteRule (.*) http://www.yoursite.com/$1 [R=301,L] # ########## End - 301 Redirect
以上是关于所有页面的Joomla 301重定向的主要内容,如果未能解决你的问题,请参考以下文章