htaccess を使用して、ホームページから末尾のスラッシュを取り除きたいです。
私の実際のURLはこのようなものでした
http://www.mydomain.com/iphone_index.php
htaccessでURLからiphone_index.phpを取り除きました。私がこれを行うために使用したコードは -
RewriteEngine On
RewriteBase /
RewriteCond %{THE_REQUEST} ^.*/iphone_index.php
RewriteRule ^(.*)iphone_index.php$ $1 [R=301,L]
しかし、私は次のように結果を得ています
http://www.mydomain.com/
この末尾のスラッシュを取り除きたい。つまり、
希望する URL http://www.mydomain.com
これを行う方法?
どんな助けでも大歓迎です。