Welcome Guest, Not a member yet? Register   Sign In
css not showing with htaccess
#4

[eluser]Nick Husher[/eluser]
You also need to update your links, so your .htaccess should have in it
Code:
RewriteEngine on
RewriteCond $1 !^(index\.php|css|images|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]

Your directory structure should look like this:
Code:
/
+ images
   + site-image-1.png
   + site-image-2.png
+ css
   + style.css

Your CI code should look like this:
Code:
<?=link_tag('css/style.css') ?>

And lastly, your CSS file should look like this:
Code:
.my-style .declaration {
  background-image: url(../images/site-image-1.png);
}


Messages In This Thread
css not showing with htaccess - by El Forum - 10-07-2008, 03:20 PM
css not showing with htaccess - by El Forum - 10-07-2008, 03:30 PM
css not showing with htaccess - by El Forum - 10-07-2008, 04:11 PM
css not showing with htaccess - by El Forum - 10-07-2008, 05:06 PM
css not showing with htaccess - by El Forum - 10-07-2008, 06:08 PM
css not showing with htaccess - by El Forum - 10-08-2008, 01:21 AM



Theme © iAndrew 2016 - Forum software by © MyBB