Welcome Guest, Not a member yet? Register   Sign In
Cannot seem to get images from folder
#1

[eluser]Unknown[/eluser]
Hello,

I am New to CodeIgniter. And I really like it Smile. It's the first framework I can understand Smile.

But I do have a problem with my picutures. I'm building a website, and I cannot display the pictures. But I cannot see why that is.

Picture

I use htaccess

Code:
RewriteEngine on
RewriteCond $1 !^(index\.php|images|css|js|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]

Tnx in advanced.
#2

[eluser]khagendra[/eluser]
Use these lines in your .htaccess file. It will work
Code:
RewriteEngine on

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]




Theme © iAndrew 2016 - Forum software by © MyBB