2017-05-12 7 views
0

私は最近私のウェブサイトをワードプレスに移しました。 .html.phpにリダイレクトする必要があります。私のウェブサイトがルートフォルダにあるので、.htaccessのリダイレクトが他のサイトのサブフォルダに影響することはありません。HTMLからPHPへのリダイレクトは、自分のルートフォルダにあるWebサイト用ですか?

特定のウェブサイトのリダイレクトルールはありますか?

答えて

0

.htaccessを使用するのが最善の方法です。

# This allows you to redirect your entire website to any other domain 
Redirect 301/http://mt-example.com/` 

# This allows you to redirect index.html to a specific subfolder 
Redirect /index.html http://example.com/newdirectory/` 

# Provide Specific Index Page (Set the default handler) 
DirectoryIndex index.html 

また、ここでは、.htaccessファイルを作成し、ルートのhtaccessの上部に

Video creaton and edition of .htaccess in wordpress

0

を編集する方法についてのビデオです、これを置く:

RewriteEngine on 

RewriteRule ^(.+)\.html$ /$1.php [L,R] 

この意志をすべてのhtmlリクエストをPHPにリダイレクトする例:/file.html/file.php Rはteルールが正常に動作していると確信が持てる場合は、R = 301にリダイレクトすることができます。

関連する問題