开发者 | NewCodeByte |
---|---|
更新时间 | 2025年8月19日 15:07 |
PHP版本: | 7.4 及以上 |
WordPress版本: | 6.8 |
版权: | GPLv2 or later |
版权网址: | 版权信息 |
/blog/*
to /articles/$1
).advanced-redirect-manager
folder to the /wp-content/plugins/
directory.We've built Advanced Redirect Manager with performance as a top priority. The redirection engine is highly optimized and uses the built-in WordPress Object Cache. On sites with a persistent object cache (like Redis or Memcached), this means virtually zero database load for handling redirects after the first visit. The Link Scanner runs only when you trigger it manually and uses AJAX chunking to avoid slowing down your server.
Yes! Use an asterisk (*
) in the "Redirect From" field. Each *
captures a segment of the URL. You can then use $1
, $2
, etc., in the "Redirect To" field to place the captured segments.
/products/category-*/item-*
/shop/$1/product/$2
/products/category-books/item-123
to /shop/books/product/123
.No. To ensure it doesn't impact your site's performance without your knowledge, the Link Scanner is a tool that you must run manually from the plugin's admin page.
Upon uninstallation (by clicking "Delete" in the Plugins screen), Advanced Redirect Manager cleans up after itself completely. It will remove its custom database table, all of its options from the wp_options
table, and any related transients. Your data will be permanently deleted. If you only "Deactivate" the plugin, all your rules and data are kept safe for when you reactivate it.