0

URLが「.php」または「.html」または「?」の場合に.htaccessリダイレクトページを使用する方法 または "=" ?

Examples
http://www.domain.ltd/index.php     # error, execute redirect to http://www.domain.ltd/ban/
http://www.domain.ltd/index/?id=foo # error, execute redirect to http://www.domain.ltd/ban/
http://www.domain.ltd/index.html    # error, execute redirect to http://www.domain.ltd/ban/

どうもありがとうございました

4

1 に答える 1

0

抜粋: http://www.webconfs.com/how-to-redirect-a-webpage.php

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

明らかに domain.com をあなたのページに置き換えてください。このリダイレクトは、domain.com に送信されるすべてのものを調べて、www.domain.com に転送します。

簡単な Google も、この素敵な htaccess ジェネレーターを作成してくれました (ただし、現時点では投稿できません)。

于 2012-09-05T10:03:35.570 に答える