andy106 0 Newbie Poster

Hi I have added the following code to my htaccess :

RewriteEngine On
Options +FollowSymlinks
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php

RewriteRule ^/*(.+/)?([^.]*[^/])$ http://%{HTTP_HOST}/$1$2/ [L,R=301]

the above rule just makes the url more SEO friendly so for example www.domain.com/home.php will become www.domain.com/home BUT when I have a url that is www.domain.home/ (with the backslash) it gives me a 500 internal error, so i would have to clear browser history and then type in www.domain.home (without the /) and that will just work fine. How can I make the sever accept "/" (the backslash) ?

Thanks

Andy