我正在Netbeans 7.3.1中启动一个新的Codeigniter项目,并为我的文件结构设置了以下内容。
我在项目属性设置中,因为Web根目录指向文本框内的public_html。我也有这个用于我的htaccess文件以及我从ci配置文件中删除了index.php。
我的问题是,当我转到localhost / MyProject时,它仍会显示脚文件夹,我不知道为什么。
有没有人看到我在某个地方犯过的错误。
-root
-application
-system
-public_html
-assets
.htaccess
index.php
Options -Indexes
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
#Removes access to the system folder by users.
#Additionally this will allow you to create a System.php controller,
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ index.php?/$1 [L]
#When your application folder isn't in the system folder
RewriteCond %{REQUEST_URI} ^application.*
RewriteRule ^(.*)$ /index.php?/$1 [L]
#Checks to see if the user is attempting to access a valid file,
#such as an image or css document, if this isn't true it sends the
#request to index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
# If we don't have mod_rewrite installed, all 404's
# can be sent to index.php, and everything works as normal.
# Submitted by: ElliotHaughin
ErrorDocument 404 /index.php
答案 0 :(得分:1)
开箱即用Netbeans没有CodeIgniter支持,但可以通过安装相应的插件轻松解决:
https://kenai.com/projects/nbphpci/pages/Home
由于CodeIgniter项目的特定结构告诉Netbeans CodeIgniter项目只是另一个php项目无法正常工作。
可以在their Wiki或here上找到安装此插件的详细步骤。使用说明here。
我认为您必须重新启动一个新项目并在项目设置向导中正确激活CodeIgniter支持,这应该是它。