Greetings everyone. I have a subdomain
www.mydomain.com. The htaccess file in that directory forwards the requests to
www.mydomain.com/home/. All is great with that, but what I also need it if someone enters the url without the ending "/" (ex:
www.mydomain.com/home) for it still to be forwarded to the right address. Below is what I have in my htaccess file. Any help would be greatly appreciated.
RewriteEngine On
Options +FollowSymlinks
RewriteCond %{HTTP_HOST} mydomain.com$
RewriteCond %{REQUEST_URI} !home/
RewriteRule ^(.*)$ home/$1