运行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/
你能帮忙吗?
谢谢!
答案 0 :(得分:1)
我认为您要使用的是来自mod_dir的DirectoryIndex
。基本上,如果您未在请求中指定文件,它将允许您指定默认打开的文件。
<Directory /flipbook>
DirectoryIndex index.html
</Directory>