Hello every body
Currently I'm facing a new prbel with .htaccess.
I've used this code to remove the .php extention and add a trailing '/' at the end.
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^/]+)/$ $1.php
RewriteRule ^([^/]+)/([^/]+)/$ /$1/$2.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !(\.[a-zA-Z0-9]{1,5}|/)$
RewriteRule (.*)$ /$1/ [R=301,L]
RewriteCond %{HTTP_HOST} !^www.superioradsmedia.com$ [NC]
RewriteRule ^(.*)$ http://www.superioradsmedia.com/$1 [L,R=301]
Everything is working fine except two things
1) If I use an image location like "www.abc.com/images/abc.jpg" it does'nt show up.. But if I use 'http://' in front of it it shows the image...
2) Suppose I have a directory in my root directory like 'new_folder' which contains an index.php page
If i access like this
www.abc.com/new_folder -------------------> It gives me 404 error...
But if I use
www.abc.com/new_folder/index.php ---------------------> it works...
ANy help will be greatly appreciated....
Thank you...