URL にディレクトリ構造を追加します。.htaccess ファイルの 301 リダイレクト ルールを記述するにはどうすればよいですか?
大海潮涌
大海潮涌 2017-09-19 14:41:54
0
3
1434

私の 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


大海潮涌
大海潮涌

学习,学习,学习!

全員に返信(3)
那山

thinkphp

いいねを押す +0
Ty80

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
小小卫

りー


いいねを押す +0
  • 返事 ブラシP豆ですよね?
    PHP中文网 著者 2017-09-19 16:36:33
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート
私たちについて 免責事項 Sitemap
PHP中国語ウェブサイト:福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!