Welcome Guest, Not a member yet? Register   Sign In
URL Rewriting Problem
#1

[eluser]$@!ful[/eluser]
I've using the following htaccess script so that i can hide index.php from the uri.

Code:
RewriteEngine on
RewriteCond $1 !^(index\.php|resources|assets|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]

But i've facing a major problem Sad

I've a directory named assets beside my index.php file and it should be there.
Now when i browse the directory by browser then the codeigniter's not found page displays.
I can't browser the file /assets/image.jpg but it displays when i call it from an <img> tag

What can i do now?

Note that it is working in my local server (localhost) but not in the live server.




Theme © iAndrew 2016 - Forum software by © MyBB