Reputation: 53
I have my own site http://www.badrinathdham.com/
I used codeigniter framework, I can access all directly but can not access "media" folder in root...
badrinathdham.com/media/images/* www.badrinathdham.com/media/css/*
Any idea what wrong i did?
Find htaccess code below
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
#ErrorDocument 404 /home
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [PT,L]
RewriteRule ^admin$ admin/dashboard [NC]
Thank in advance
Upvotes: 0
Views: 55