我正在尝试制作一个在共享主机上运行的简单 Zend Webapp。登录 FTP 服务器后的根文件夹是一个名为“www”的文件夹。所以结构是:
/www
/tasklist
/application
/library
/public
/.htaccess
托管服务提供商要求 .htacccess 文件中的所有路径都是绝对路径。考虑到这一点,我的 Zend 应用程序的主 index.php 的路径是:
http://aportsupport.cz/tasklist/public/index.php
这也是我可以访问我的应用程序的链接,但某些文件(css、js 等)的其他路径不起作用。当我尝试通过以下方式访问我的应用程序时:
http://aportsupport.cz/tasklist/
根据我已经尝试过的 .htaccess 的各种设置,我只会收到 404 或 403 错误。我无权访问错误日志,也无权访问任何服务器配置。默认控制器是'index',动作'index',模块'default'。