0

301経由でhttp://mydomain.com/index.phpからhttp://mydomain.comに、またはhttp://mydomain.com/variableからhttp://mydomain.comにリダイレクトするにはどうすればよいですか?私はこれを試しましたが、機能しません:

Options +FollowSymlinks
RewriteEngine on
rewritecond %{http_host} ^http://mydomain.com/variable [nc]
rewriterule ^(.*)$ http://mydomain.com/$1 [r=301,nc]
4

1 に答える 1

0

試す:

RedirectMatch 301 ^/index.php$ /
RedirectMatch 301 ^/variable$ /
于 2013-03-08T22:55:00.023 に答える