我正在使用Apache + Codeigniter来设置RESTful后端服务。
我将codeigniter的项目文件夹html /放在我的Apache的web文件夹下。 然后我可以通过http://localhost/html/index.php访问它。 我想删除网址中的文件夹名称,访问我的网页http://localhost/index.php。
任何人都可以告诉我如何在Apache端或Codeigniter上配置吗?
提前致谢!
答案 0 :(得分:2)
在Apache文件夹中,只需打开文件名httpd.conf
并将此代码放在底部:
Listen 80
<VirtualHost *:80>
DocumentRoot "D:/htdocs/html/"
</VirtualHost>
告诉我,它是否有效。