Hi guys

I have a small problem.  In my website I have two .htacces files.


.htaccess (this is in root directory)
<IfModule mod_rewrite.c>
        RewriteEngine On

                RewriteCond %{REQUEST_FILENAME} !-f
                RewriteCond %{REQUEST_FILENAME} !-d

                RewriteRule ^(.*)$ index.php?url=$1 [L,QSA]

</IfModule>

.htaccess (this is in public directory where I have "images" directory)
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule    ^$    public/    [L]
RewriteRule    (.*) public/$1    [L]
</IfModule>


Now the issue is in any case each response has content-type as  "html/text"
type.

So even if I am sending get request for an image, I get text in response.

How do I change this ?

-- 
You received this message because you are subscribed to the Google Groups 
"Google Code Jam" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to