除非使用index.html,否则Magento在root下使用子域404上的flipbook

时间:2013-09-16 13:40:29

标签: apache .htaccess magento

运行Magento 1.7多站点(4个“网站”)如下:

example.com
ca.example.com
example.com/b2b
ca.example.com/b2b

这些“网站”工作正常,我对.htaccess的了解有限,所以在我更好地了解问题所在之前,我不想搞砸它。在子目录中添加了“翻书”。除非我使用example.com/flipbook/index.html并且需要使用example.com/flipbook/

加载,否则从apache引发404

你能帮忙吗?

谢谢!

1 个答案:

答案 0 :(得分:1)

我认为您要使用的是来自mod_dirDirectoryIndex。基本上,如果您未在请求中指定文件,它将允许您指定默认打开的文件。

<Directory /flipbook>
    DirectoryIndex index.html
</Directory>