嘿,这是我有一个问题的例子。我有一个链接:
<a href='/index.php'>link</a>
然后转到domain.com/index.php
现在我将如何制作,以便通过URL重写,它不会在?
之后显示index.html我知道我可以用“/”链接到文档根目录,但这对我来说并不适用于所有情况。所以一个简单的重写就太棒了!
答案 0 :(得分:0)
RewriteEngine On
RewriteRule ^index.php$ / [R=301,L]
答案 1 :(得分:0)
如果你不能影响@Pekka建议的链接,你也可以强迫
RewriteCond %{REQUEST_URI} ^/index\.php$
RewriteRule ^(.*)$ http://domain.com [R=301,NC,L]