Netbeans仍然显示根文件夹



我正在Netbeans 7.3.1中启动一个新的Codeigniter项目,并为我的文件结构设置了以下内容。

我在项目属性中设置了web根指向文本框内的public_html。我的htaccess文件也有这个,我已经从ci配置文件中删除了index.php。

我的问题是,当我转到localhost/MyProject时,它仍然显示foot文件夹,我不知道为什么。

有人看到我在什么地方犯了错误吗。

-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

开箱即用的Netbeans不支持CodeIgniter,但可以通过安装适当的插件来轻松解决:

https://kenai.com/projects/nbphpci/pages/Home

由于CodeIgniter项目的特定结构告诉Netbeans,CodeIgnitor项目只是另一个php项目,因此无法正常工作。

安装此插件的详细过程可以在他们的Wiki或此处找到。用法在这里解释。

我认为您将不得不重新启动一个新项目,并在项目设置向导中正确激活CodeIgniter支持,这应该就是了。

相关内容

  • 没有找到相关文章