i spend my hours to solve this problem but cannot reach anything.I applied what said in stackoverflow but it does not work.
As you see below my css files are stores in public directory and try to use anasayfa.css

and try to reach my css files with my view. but does not work.

i also remove my index.php with htaccess my in rule in htaccess
i allowed css files like that
RewriteEngine on
RewriteCond $1 !^(index\.php|images|css|robots\.txt)
RewriteRule ^(.*)$ /pasaj/index.php/$1 [L]
How can i reach my css ? what’s the problem?
What’s the “Pasaj – El emegi..” ? Is it the page title? why is there inside an url?
It should be (absoluth url):
Or, much easier, using
base_url()(url helper):Or with
link_tag()(html helper):UPDATE:
to load an helper, put inside the controller’s method you’re using to call that view:
Refer to the manual for this and other basic infos: it’s pretty extensive and clear, it will answer many of your doubts