Joomla使用.htaccess将index.php重定向到index.php / blog

时间:2013-12-17 15:10:05

标签: .htaccess redirect joomla

我正在尝试使用.htaccess将index.php重定向到index.php / blog。

RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s/+[\s?]
RewriteRule ^$ /index.php/blog [R=301,L]`       

此代码无效.. 请帮我解决这个问题。

1 个答案:

答案 0 :(得分:0)

您可以在.htaccess中将此规则作为第一条规则进行尝试:

RewriteEngine On

RewriteCond %{THE_REQUEST} \s/+(index\.php)?[\s?]
RewriteRule ^index\.php$ /index.php/blog/ [R=301,NC,L]

RewriteRule ^(.*)$ /store/$1 [L]