不希望使用htaccess文件显示Magento home

时间:2014-01-29 13:57:37

标签: apache .htaccess magento magento-1.7

我想使用访问权限将主页重定向到另一个页面,这不是一个magento页面。但我想要显示magento的所有其他页面。 事件:

example.com  redirect to example.com/index.html (which is not an magento page)
example.com/index.php  redirect to example.com/index.html (which is not an magento page)

但我想展示其他magento页面......

1 个答案:

答案 0 :(得分:1)

为什么不直接使用directoryindex指令?

在htaccess中,您可以将其放在顶部以指定根索引文件。

DirectoryIndex index.html

您可以创建一个规则,将index.php重定向到主站点。

RewriteEngine On
RewriteCond %{REQUEST_URI} ^/index\.php$
RewriteRule ^(.*) /index.html [R=301,L]

然后这将是您的默认索引页面。