I create an image folder, put a couple .php files and a few images there .
if i type:
xxxxxxx.com/images/test.jpg , image shows up.
but if i type
xxxxxxx.com/images/test.php , it redirects me to 404 page. file is there but just cannot be found.
It must have something to do with my .htaccess file, I looked at it but couldn't figure out whats wrong. I paste it here, please help me out, thank you.
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress