検索

ホームページ  >  に質問  >  本文

URL にディレクトリ構造を追加します。.htaccess ファイルの 301 リダイレクト ルールを記述するにはどうすればよいですか?

私の Web サイトは Wordpress Web サイトなので、修正したいです。

固定リンクは http://domain name/%post_id%.html から http://domain name/�tegory%/ にジャンプします。 /%post_id%. html

.htaccess ファイルの 301 リダイレクト ルールはどのように記述すればよいですか?

以下は現在の htaccess ファイルです:

# BEGIN WPSuperCache

<IfModule mod_rewrite.c>

RewriteEngine On

RewriteBase /

#プロキシの背後からページを提供する場合は、「RewriteCond %{HTTPS} on」をより適切なものに変更することをお勧めします

AddDefaultCharset UTF-8

RewriteCond %{REQUEST_METHOD} !POST

RewriteCond %{QUERY_STRING} !.*=.*

RewriteCond %{HTTP:Cookie} !^.*(comment_author_|wordpress_logged_in|wp - postpass_).*$

RewriteCond %{HTTP:X-Wap-Profile} !^[a-z0-9\"] [NC]

RewriteCond %{HTTP:Profile} ! ^[a-z0-9\"] [NC]

RewriteCond %{HTTP:Accept-Encoding} gzip

RewriteCond %{HTTPS} on

RewriteCond % { DOCUMENT_ROOT}/wp-content/cache/supercache/%{SERVER_NAME}/$1/index-https.html.gz -f

RewriteRule ^(.*) "/wp-content/cache/supercache/% { SERVER_NAME}/$1/index-https.html.gz" [L]


##RewriteCond %{REQUEST_METHOD} !POST

RewriteCond %{QUERY_STRING} ! .*=.*

RewriteCond %{HTTP:Cookie} !^.*(comment_author_|wordpress_logged_in|wp-postpass_).*$

RewriteCond %{HTTP:X-Wap-Profile } !^[a-z0-9\"] [NC]

RewriteCond %{HTTP:Profile} !^[a-z0-9\"] [NC]

RewriteCond % {HTTP:Accept-Encoding} gzip

RewriteCond %{HTTPS} !on

RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/supercache/%{SERVER_NAME}/$1/index。 html.gz -f

RewriteRule ^(.*) "/wp-content/cache/supercache/%{SERVER_NAME}/$1/index.html.gz" [L]


#RewriteCond %{REQUEST_METHOD} !POST

RewriteCond %{QUERY_STRING} !.*=.*

RewriteCond %{HTTP:Cookie} !^.*(comment_author_ |wordpress_logged_in|wp-postpass_).*$

RewriteCond %{HTTP:X-Wap-Profile} !^[a-z0-9\"] [NC]

RewriteCond %{ HTTP:Profile} !^[a-z0-9\"] [NC]

RewriteCond %{HTTPS} on

RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/supercache/ %{SERVER_NAME}/$1/index-https.html -f

RewriteRule ^(.*) "/wp-content/cache/supercache/%{SERVER_NAME}/$1/index-https.html" [L ]


RewriteCond %{REQUEST_METHOD} !POST

RewriteCond %{QUERY_STRING} !.*=.*

RewriteCond %{HTTP :Cookie} !^.*(comment_author_|wordpress_logged_in|wp-postpass_).*$

RewriteCond %{HTTP:X-Wap-Profile} !^[a-z0-9\"] [NC]

RewriteCond %{HTTP:Profile} !^[a-z0-9\"] [NC]

RewriteCond %{HTTPS} !on

RewriteCond %{DOCUMENT_ROOT }/wp-content/cache/supercache/%{SERVER_NAME}/$1/index.html -f

RewriteRule ^(.*) "/wp-content/cache/supercache/%{SERVER_NAME}/$1/ Index.html" [L]

</IfModule>


END WPSuperCache


BEGIN WordPress

<IfModule mod_rewrite.c>

RewriteEngine On

RewriteBase /

RewriteRule ^index\.php$ - [L]

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule 。 /index.php [L]

</IfModule>


# END WordPress

# BEGIN EWWWIO

# 終了 EWWWIO


大海潮涌大海潮涌2680日前1492

全員に返信(3)返信します

  • 那山

    那山2017-09-20 08:15:00

    thinkphp

    返事
    0
  • PHP中文网

    PHP中文网2017-09-19 16:35:58

    phpの301ジャンプの使用を推奨します

    Header("HTTP/1.1 301 Moved Permanently");
    Header("Location: http://www.php.cn".$_SERVER["REQUEST_URI"]);
    exit;


    返事
    0
  • 大海潮涌

    ご回答ありがとうございます。ただし、目視検査は適用されません。 http://ドメイン名/%post_id%.html から http://ドメイン名/%category%/%post_id%.html にバッチでジャンプしたいのです。途中にディレクトリ名を追加します。 例: http://www.seoshipin.cn/1.html http://www.seoshipin.cn/seorumen/1.html にジャンプします。

    大海潮涌 · 2017-09-19 18:55:27
  • 小小卫

    小小卫2017-09-19 16:11:26

    りー


    返事
    0
  • PHP中文网

    ブラシP豆ですよね?

    PHP中文网 · 2017-09-19 16:36:33
  • キャンセル返事