私の 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} !POSTRewriteCond %{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} gzipRewriteCond %{HTTPS} !onRewriteCond %{DOCUMENT_ROOT}/wp-content/cache/supercache/%{SERVER_NAME}/$1/index。 html.gz -fRewriteRule ^(.*) "/wp-content/cache/supercache/%{SERVER_NAME}/$1/index.html.gz" [L]
#RewriteCond %{REQUEST_METHOD} !POSTRewriteCond %{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} !POSTRewriteCond %{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
thinkphp
phpの301ジャンプの使用を推奨します
りー