我如何根据 htaccess 或 wp-config 或 function.php 中的 ID 在 wordpress 中重定向动态 URL
how can i redirect dynamic URL in worpress base on ID in htaccess or wp-config or function.php
我想将 301 重定向到下面 URL
worpress.com/NewsInfoPrint?id=13624
至
wordpress.com/news/13624/
// 号码是 WordPress 中的 ID post,我需要所有 post 来做到这一点,所以号码是动态的
我该怎么做?
请试试这个。
RewriteEngine On
RewriteCond %{REQUEST_URI} ^\/NewsInfoPrint$
RewriteCond %{QUERY_STRING} ^id=([0-9]*)
RewriteRule ^(.*)$ \/news/%1/? [R=301,L]
我想将 301 重定向到下面 URL
worpress.com/NewsInfoPrint?id=13624
至
wordpress.com/news/13624/
// 号码是 WordPress 中的 ID post,我需要所有 post 来做到这一点,所以号码是动态的
我该怎么做?
请试试这个。
RewriteEngine On
RewriteCond %{REQUEST_URI} ^\/NewsInfoPrint$
RewriteCond %{QUERY_STRING} ^id=([0-9]*)
RewriteRule ^(.*)$ \/news/%1/? [R=301,L]