0

htaccess でのリダイレクト 301 書き込みに問題があります。

次のテキストを htaccess.txt に追加しましたが、機能しません:

Options +FollowSymLinks
#  mod_rewrite in use
RewriteEngine On
//301 Redirect Old File
Redirect 301 http://www.old_site.com/en/about-us/company-profile.html http://www.new_site.com/en/about-us/company-profile.html

また、成功せずに次のことを試しました:

Options +FollowSymLinks
#  mod_rewrite in use
RewriteEngine On
//301 Redirect Old File
Redirect 301 /en/about-us/company-profile.html http://www.new_site.com/en/about-us/company-profile.html

エラーはどこにありますか? robots.txt を変更する必要がありますか?

ありがとう

4

1 に答える 1

3

ファイルの名前を からhtaccess.txtに変更します.htaccess厳密に言えば、ファイルの拡張子は であり、.htaccessそれに接頭辞が付いている名前はありません。

于 2012-04-05T14:46:16.173 に答える