我想通过使用htaccess来摆脱主页上的尾部斜杠。
我的实际网址就是这样的
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/
我想摆脱这个尾随斜线。 即,
我想要的网址 http://www.mydomain.com
怎么做?
任何帮助都将不胜感激。
答案 0 :(得分:1)
您不需要在此处使用RewriteCond,因此请将规则更改为此并清除浏览器缓存:
RewriteRule ^(.*)/iphone_index.php$ $1 [R=302,L]
确定有效后,R=302
改为R=301