Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想为一个新的 Wordpress 网站做一些重定向:
domain.com/index.php?cPath=24 --> domain.com/about/
我的 .htaccess (root) 看起来像:
Redirect 301 /index.php?cPath=24 /about/
我得到这个:
domain.com/?cPath=24
您可以使用mod_rewrite重定向标志来完成此操作:
mod_rewrite
RewriteEngine On RewriteCond %{QUERY_STRING} ^cPath=24 RewriteRule ^ /about/? [R=301,L]