Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

CodeIgniter HTAccess doesn't load CSS files

I just added a htaccess file to my codeigniter application that removes "index.php" from the url. The URL's are working fine, but now the CSS links are not working, even though the references are absolute(i.e. "http://...") The images as well as all other links work perfectly fine, but the CSS files won't load. This is the HTAccess file.

RewriteEngine on RewriteCond $1 !^(main.php|images|robots.txt) RewriteRule ^(.*)$ main.php/$1 [L]

And yes my index file for now is main.php because i will be using two different applications on the same CI installation. Thanks for any help.

like image 553
ShoeLace1291 Avatar asked Jul 20 '11 07:07

ShoeLace1291


2 Answers

You may also wish to try the following:

# 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 ^(.*)$ main.php/$1 [L]

This will allow you create whatever folders you want in the web root (styles, images, scripts) without having to declare them in the htaccess file.

like image 197
simnom Avatar answered Oct 04 '22 02:10

simnom


I use this. Is well commented, and obviously not written by me.

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /

    #Removes access to the system folder by users.
    #Additionally this will allow you to create a System.php controller,
    #previously this would not have been possible.
    #'system' can be replaced if you have renamed your system folder.
    RewriteCond %{REQUEST_URI} ^system.*
    RewriteRule ^(.*)$ /index.php?/$1 [L]

    #When your application folder isn't in the system folder
    #This snippet prevents user access to the application folder
    #Submitted by: Fabdrol
    #Rename 'application' to your applications folder name.
    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]
</IfModule>

<IfModule !mod_rewrite.c>
    # 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
</IfModule> 
like image 29
Alfonso Rubalcava Avatar answered Oct 04 '22 03:10

Alfonso Rubalcava