apache 安装程序显示目录文件而不是网站
我刚刚完成了在 OSX 上使用 apache2 进行开发的本地站点的设置,但是当我访问我的站点(带有 htaccess 和 index.php 的 cakephp)时,我只得到了可以单击的文件和文件夹的列表,而不是实际的网站。
我尝试放置 index.html
并且索引页面加载正确。但是当我删除它时,我会得到目录中的文件列表。
有什么帮助吗?
I just finished setting up a local site for development with apache2 on OSX, but what happens is that when i go to my site (cakephp with htaccess and index.php) i get simply a list of the files and folders that i can click, instead of the actual website.
I tried to put an index.html
and the index page loads right. But when i remove it, i get a list of files in the directory.
Any help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我错过了这一行:
I was missing the line:
我认为你必须在 httpd.conf 文件中添加 php 文件的类型:
记住在此之后重新启动 apache。您可以发布您的 .htaccess 文件吗?
此外,您可以简单地在 Mac 上下载并安装 MAMP。它是Apache+PHP+MySql的一个包。您可以在这里找到它:http://www.mamp.info/en/index.html 但请记住卸载已经安装的 apache(以避免冲突)。
I think you have to add type for php files in httpd.conf file:
Remember to restart apache after this. Can you post your .htaccess file?
Additionally, you could simply download and install MAMP on your Mac. It's a pack with Apache+PHP+MySql. You can find it here: http://www.mamp.info/en/index.html but remember to uninstall apache that you already installed (to avoid conflicts).