Welcome Guest, Not a member yet? Register   Sign In
i cannot acces img folder
#1

[eluser]Evollution[/eluser]
ok i installed ci on my web and now i cannot acces my img folder :

http://www.fifago.com/img/bec.png i recive a 404 error why ?!
#2

[eluser]Peter Pumpkineater[/eluser]
hint: .htaccess
#3

[eluser]Cristian Gilè[/eluser]
Is img folder at the same level of index.php file ?


Cristian Gilè
#4

[eluser]Evollution[/eluser]
Cristian Gilè yes
#5

[eluser]Evollution[/eluser]
htaacces :

Code:
<IfModule mod_rewrite.c>

    # Make sure directory listing is disabled
    Options +FollowSymLinks -Indexes
    RewriteEngine on

    # NOTICE: If you get a 404 play with combinations of the following commented out lines
    #AllowOverride All
    #RewriteBase /wherever/pyro/is

    # Restrict your site to only one domain
    #RewriteCond %{HTTP_HOST} !^example\.com$
    #RewriteRule ^(.*)$ http://fifago.com/$1 [L]

    # Send request via index.php (again, not if its a real file or folder)
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    
    # Redirect non www to www
    RewriteCond %{HTTP_HOST} ^fifago.com
    RewriteRule (.*) http://www.fifago.com/$1 [R=301,L]

    <IfModule mod_php5.c>
        RewriteRule ^(.*)$ index.php/$1 [L]
    </IfModule>

    <IfModule !mod_php5.c>
        RewriteRule ^(.*)$ index.php?/$1 [L]
    </IfModule>

</IfModule>
#6

[eluser]Cristian Gilè[/eluser]
Are you sure? Clicking on the link you provided I can see the light bulb !!


Cristian Gilè
#7

[eluser]Evollution[/eluser]
i edited .htacces




Theme © iAndrew 2016 - Forum software by © MyBB