I want to get rid of the trailing slash from homepage by using htaccess.
My Actual URL was something like this
http://www.mydomain.com/iphone_index.php
I got rid of iphone_index.php from the URL by htaccess. The code I used to do this is --
RewriteEngine On
RewriteBase /
RewriteCond %{THE_REQUEST} ^.*/iphone_index.php
RewriteRule ^(.*)iphone_index.php$ $1 [R=301,L]
But I'm getting the result as
http://www.mydomain.com/
I want to get rid of this trailing slash. i.e.,
My Desired URL http://www.mydomain.com
How to do this?
Any help would be appreciated.