I have the following rule in my current .htaccess file to redirect /videos/login/ requests to /videos/login.php
RewriteRule login/ /videos/login.php
This works fine if I am access login page using http://mysite.com/videos/login/ but when I am trying to access the same page using http://mysite.com/videos/login (without ending slash) then it gives me "404 page not found" error.
Please tell me what will be the correct rule of .htaccess file so that any request for http://mysite.com/videos/login/ or http://mysite.com/videos/login will point to the same /videos/login.php page.
Thanks