Welcome Guest, Not a member yet? Register   Sign In
Netbeans and CI
#1

[eluser]xtremer360[/eluser]
I'm starting a new Codeigniter project inside of Netbeans 7.3.1 and have the following set up for my file structure.

I have in the project properties set up as the web root is pointed to public_html inside of the text box. I also have this for my htaccess file as well as I have removed index.php from the ci config file.

My problem is that when I go to localhost/MyProject it still shows the foot folder and I don't know why.

Is there anyone that sees a mistake I have made somewhere.

Code:
-root
    -application
    -system
    -public_html
        -assets
        .htaccess
        index.php

Code:
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

#2

[eluser]xtremer360[/eluser]
I tried deleted the project and starting over and adding in the plugin for codeigniter to netbeans but I'm not sure if it can work because of 2.1.3 or 2.1.4 not having support. Is this possible?




Theme © iAndrew 2016 - Forum software by © MyBB