Redirection

download

Download Redirection 2.1.25

378.17 KB - WP 2.6+
Updated January 22, 2010.

Redirection is a WordPress plugin to manage 301 redirections, keep track of 404 errors, and generally tidy up any loose ends your site may have. This is particularly useful if you are migrating pages from an old website, or are changing the directory of your WordPress installation.

Features include:

  • Supports both WordPress-based and Apache-based redirections
  • 404 error monitoring - captures a log of 404 errors and allows you to easily map these to 301 redirects
  • RSS feed for 404 errors
  • Custom 'pass-through' redirections allowing you to pass a URL through to another page, file, or website.
  • Full logs for all redirected URLs
  • Create redirections based upon a URL, browser, referring site, or login status
  • Automatically add a 301 redirection when a post's URL changes
  • Full regular expression support
  • Fully localized
  • Export all redirections to CSV, XML, or Apache .htaccess files
  • Import Apache .htacces files

Redirection is available in the following languages:

If you can provide a language translation then please get in touch. A PO file is provided with the plugin to be used in translating with poEdit.

Version History

  • 2.1.25 - Fix deep slashes
  • 2.1.24 - Add translations (Polish and Ukranian), database optimisation
  • 2.1.22 - Add Bahasa Indonesian translation, add German translation, add patch to disable logs (thanks to Simon Wheatley!)
  • 2.1.22 - Pre WP2.8 compatibility fix
  • 2.1.21 - Fix #620, add Russian translation

Installation

Installation is just like any WordPress plugin:

  • Download redirection.zip
  • Unzip
  • Upload to redirection directory to /wp-content/plugins on your server
  • Activate the plugin
  • Configure options from Manage - Redirection

Note that you must have a permalinks structure setup through WordPress.

You can find full details of installing a plugin on the plugin installation page.

Core Concepts

Redirection uses three core concepts:

  • Modules
  • Groups
  • Redirects

A module consists of many groups, and each group consists of many redirections. A module determines how the redirections will be used, and a group allows you to separate redirections into logical units. A redirection represents an action performed when a particular URL is accessed.

Don't worry, there's more to come!

Modules

At the most basic level, a module determines how redirections are implemented. There are three types of module:

  • WordPress
  • Apache
  • 404 errors

The WordPress module uses WordPress to implement redirections. This means it works for all permalink-enabled sites and so has the greatest compatibility.

The Apache module, as you would expect, uses Apache to implement redirections. This means that each redirection is written to an Apache .htaccess file, giving you better performance than the WordPress module, at the cost of less compatibility and less flexibility (some features, such as redirection statistics, are only available from the WordPress module).

Separate from these is the 404 error module. This uses Redirection to keep track of 404 errors.

Modules

Each module can be exported to CSV, XML, or an Apache .htaccess file. You can also view logs for each module via an RSS feed

WordPress Module

The WordPress module is the default module and provides the most features. The main disadvantage of this module is that each time a URL is redirected it requires WordPress to be loaded (contrast this to the Apache module where a redirection occurs before WordPress loads).

This module is configured as follows:

Wordpress Module

These options are detailed below:

  • Canonical - determine whether the www should be removed or added to your site URL.
  • Strip index - if enabled then any attempt to access a index.php, index.html, or index.asp file will cause an automatic redirection to the same URL, minus the index file.
  • Time Limit - sets a site-wide PHP timeout limit. Useful if something is timing out.
  • Error level - sets the PHP error reporting level. Useful for removing unwanted warnings, or for viewing hidden ones

Apache Module

Rather than using WordPress to provide redirections the Apache module writes data to an Apache .htaccess file. If you site supports these then this will give you the greatest performance, at the cost of losing a few items of functionality. For example, the Apache module provides no statistical information so it is not possible for the Redirection plugin to keep track of how many times a particular redirection has been used.

The module is configured as follows:

Apache Module

The options that differ from the WordPress module are:

  • Location - the location of the .htaccess file. The default will be your site directory
  • Ban IPs - prevents certain IPs from accessing your site
  • Allow IPs - allow certain IPs to access your site
  • Raw .htaccess - add custom rules
  • Site URL - an advanced option which allows you to set the site base URL

Note that when writing to a .htaccess file the Apache module will retain any existing non-WordPress data, so you can still add custom rules.

404 Module

This module is a little different to the others in that it is designed to record 404 errors. Rather than make this a general function, as in previous versions, the power of this module comes from the fact that redirections created inside it will be ignored from the 404 log. In other words, the module records all 404 errors except the specified URLs. Combined with the RSS feed this gives you a lot of options to keep track of errors on your site.

404 Errors

If you do want to ignore a 404 error (for example, you site may not have a favicon.ico and you don't want this recorded) then you should create redirections as normal, but set the action to 'Do nothing'. As for other modules you can create redirections based upon any action or rule, or matching a particular regular expression.

Groups

A group is a logical collection of redirected URLs. You can create as many groups as you wish, and groups can be re-ordered. URLs are matched based not only on the order in which they occur within a group, but the order in which groups occur within a module.

Group Edit

As well as allowing you to collect redirections together, you can also specify whether the redirections within a group are logged.

As an additional configuration option you can select which group an automatically generated URL is put in when a post/page or category is changed.

Using Redirection

The main idea behind Redirection is that you create several URLs that you want to redirect. These URLs are placed within a group, which in turn is placed within a module. The module determines how the URLs are redirected, and the group allows you to logically organise the URLs.

Each URL (or redirection) can be configured to behave in different ways. When creating a redirection there are several pieces of information you must provide:

  • Source URL - This is the original URL that you want to redirect somewhere else
  • Match - This tells the plugin how you want to match the source URL
  • Action - Determines what happens if the URL is matched
  • Regular expression - Tells the plugin that the source URL is a regular expression (i.e. a pattern that may match many URLs)
  • Target URL - most actions have a target URL. This is typically the URL that the user will be redirected to should the pattern match

Create

Note that items can be re-ordered and this may influence which redirection takes effect.

Matching URLs

Matching a URL is a key part of Redirection and consists of a source URL. This URL must exactly match a URL that you want to redirect. For example, your site has the page:

http://yoursite.com/oldpage/that/needs/redirecting/

The source URL for this is: /oldpage/that/needs/redirecting/. The source does not require your website address, and it is only possible to redirect a URL that exists on your website (you cannot redirect an external website, for example).

Advanced users can make use of regular expressions to reduce the number of redirections they need to create. A regular expression is basically a pattern that tells the plugin how to match. For example:

/(\d*)/(\d*)/(.*)

This pattern tells the plugin that you want to match a URL that looks like:

/2007/05/some-url/

That is, the (\d*) indicates a number, and the (.*) a sequence of characters. Regular expressions are a complicated subject and this page will not attempt to give more than a passing overview of using them. If you do need more help then you should take a look at a regular expression website.

Remember that if the source URL is a regular expression then you must enable the regular expression option, otherwise Redirection will just treat you source URL as plain text.

In addition to the source URL you can also specify a match condition:

  • URL only - Only matches the URL (the majority of your redirections will use this)
  • URL and referrer - Matches a URL when the source and referring site matches (i.e. match the URL only when the user came from a certain website)
  • URL and login status - Matches a URL when the source and user's login status matches (i.e. match the URL only when the user is logged in)
  • URL and user agent - Matches a URL when the source and user's browser matches (i.e. when the user is using a particular type of web browser)

These special rules can be both positive and negative. For example, you can match a URL when the user is logged in (and be redirect to one URL), or when the user is not logged in (and be redirected to another URL). This makes it very easy to create custom rules where users are redirected if they are using a particular browser, or if they came from a particular website.

Actions

An action tells Redirection what to do when a source URL is matched:

  • Redirect to URL - The default case and the majority of your redirections will use this
  • Redirect to random post - An esoteric action that may be useful to some people
  • Pass through - An advanced option that allows you to masquerade one URL as another (i.e. when the source URL is accessed it actually displays the contents of another URL without the user being aware)
  • Error (404) - Causes a 404 error to be returned
  • Do nothing - A dummy option that can be used if you just want to track accesses to a URL

Configuration of rules and actions

Depending on the particular combination of action and match rule you may be required to provide further details for a redirection.

Basic URL redirection

You can specify which HTTP code is used to redirect a URL (301, 302, or 307):

Redirect Url

A couple of examples:

  /blog/(.*) => /$1

This will match any URL that starts with /blog/, and will redirect it to the same URL but without /blog/. For example, /blog/2006/10/01/mypost will be redirected to /2006/10/01/mypost.

  /2006/month_d+/(.*) => /2006/$1/$2

This will match any URL that starts /2006/month_, and is then followed by a number. This will be redirected to the same URL, but without month_. For example, /2006/month_1/something will be redirected to /2006/1/something.

To replace a single dash in a URL with a space:

  /tags/(.*?)-(.*?) => /tags/$1%20$2

Redirect to URL by matching user agent

This allows you to configure a redirection to occur when a specific browser (the user agent) is used:

Redirect User Agent

A set of pre-defined user agents is available from the drop-down menu or you can specify your own. The user agent match is always performed using a regular expression.

Two target URLs can be specified, one for if the user agent does match, and one for if it doesn't match.

Redirect to URL by matching referrer

Similar to the user agent rule but this one looks at the referrer. That is, if a user follows a link from another site to yours, the original site is passed along by the browser (unless disabled) to your site so that you know where the user came from. Using this rule you can base your redirections upon this original site.

Redirect to URL by login status

This rule allows you to match a URL based upon the user's WordPress login status. That is, if they are logged into your site.

Support

Please direct all support questions to the Redirection support forum. Any support questions left on this page may not be answered.

A good article on using Redirection with regular expressions can be found here: Redirection Plugin & Regexes.

Bugs & New Features

A full list of all bugs can be found in the Redirection issue tracker.

Date Current outstanding bugs Status
17 Mar 2010 Unable to create redirects

A full list of all requested features can be found in the Redirection feature tracker.

Date Current requested features
31 May 2009 Case sensitivity
04 Jun 2009 Default redirections
15 Jul 2009 update the screenshot images
28 Sep 2009 Email report of 404 errors
08 Dec 2009 Add [blogurl] variable to Target URL
26 Jan 2010 Redirect based on country
13 Mar 2010 Split hit statistics - external and internal

Help me to save time by reading these instructions!

Please report bugs in the Redirection issue tracker.

Please make feature suggestions in the Redirection feature tracker.

Please direct all support questions to the Redirection support forum.

Comments (page 1 of 13)

Page: 1 2 3 4 5 ... 10 11 12 13
  1. Roy :

    Jul 14, 2006 7:09 am |

    This plugin doesn't work correctly for me. It gives back a 302 instead of a 301, i'm also using the "permalink redirect" plugin, which can be found here: http://fucoder.com/code/permalink-redirect/

    have you got any idea what can be the problem?

  2. Will :

    Jul 20, 2006 1:04 pm |

    Not showing up in admin cp after enabling.

    Running WP 1.5 here.

  3. John( author ) :

    Jul 22, 2006 12:02 am |

    Sorry, I should have made it clear that the plugin is WP 2 only!

    Roy, there's a new version, try that and see how it goes. I'm also using it with fucoder's permalink plugin.

  4. CountZero :

    Jul 22, 2006 3:40 am |

    bug report for the redirection.zip file with 21.900 byte filesize (the plugin says it's version 1.0, but according to this web page I've downloaded v1.2): the redirects don't work for changed page slugs, due to one small but silly error.

    [technical details removed now it's fixed!]

    only due to these changes I was able to get your plugin to work correctly, so I suppose you should update your download zip ;)

  5. John( author ) :

    Jul 23, 2006 6:24 pm |

    Yep, somehow I uploaded an old version of 1.0 from SVN. Updated to the real 1.2 now

  6. ETF Guy :

    Jul 27, 2006 3:07 pm |

    I get a recursion error with this plug-in when accessing any URL on my blog. Any chance that this plug-in won't work right with IIS-based hosting? I've had other WordPress plug-in problems related to my host using IIS.

  7. Roy :

    Aug 2, 2006 4:44 am |

    Hey, i've tried to update the version, but now i miss some files and the edit function doesn't work at all...

  8. Mike :

    Aug 2, 2006 3:48 pm |

    I've had the same problem with edit not working.

    Additionally you need to change the include directives in redirection.php lines 23 and 461 to

    include dirname(__FILE__) . '/redirection_item.php');

    Without the directory pathing php5 servers give an open_basedir error.

  9. John( author ) :

    Aug 3, 2006 12:09 am |

    Zip updated again (3rd time's the trick, right?)

    Mike, that sounds like a server issue as I'm developing on PHP5 with no errors. Could you possibly send me the output from phpinfo on your server so I can look at the PHP settings and try and replicate it? Thanks

  10. Mike :

    Aug 8, 2006 5:41 am |

    The 3rd time was the charm.

    The open_basedir error results from PHP attempting to run the included file in the tmp directory instead of the current directory. I've tried mucking around with the apache files to set the basedir, but I have found that retrieving the the current path and appending the included plugin name gets around this issue. Most other plugins use this approach as not al Apache installations are the same.

    Mike

  11. johnnoone :

    Aug 11, 2006 11:42 pm |

    Nice plugin. It works well on my blog.

  12. Mike :

    Aug 28, 2006 6:01 am |

    John,

    The plugin works great. One tiny issue I have found is with the automatic 301 creation. If I have a post in draft state and then publish it using a different title and slug, Redirection will create a 301 redirect entry.

    I don't know if it is possible to detect, but I think that the 301 entries should only be created when a published post's slug is changed. This way you don't end of with extra unnecessary rules.

    Mike

  13. Rob :

    Sep 20, 2006 9:05 am |

    Please can you provide some examples of how to use the regex functionality?
    For example, how would I point people heading for /weblog/2005/12/index.php to /2005/12/? That is, people heading for /weblog/NNNN/BB/index.php to /NNNN/BB/?

    Two questions:-
    1. If the method with the plugin is separate from the .htaccess method, how does it work? And should I delete my .htaccess 301 redirects?
    2. I am migrating my Movable Type blog, with 360 posts, to WordPress, but changing the url structure (from /weblog/2005/12/audience_relati.php, whereby MT takes the first 15 characters of a post title, to /2005/12/15/audience-relationships-threat-or-opportunity/). I had started using .htaccess to set up redirects individually, but I have hundreds of posts - is it possible to enlist this plugin to intitiate some regex-based (?) method of automatic redirection? Ideally, for posts; if not, then, as above, for monthly archives.

    Thanks

  14. Rob :

    Sep 22, 2006 3:05 am |

    I'm moving by Movable Type blog to WordPress, changing the URL form - and so, location - of all 360 of my posts (from the form http://www.domain.com/weblog/2005/12/audience_relati.php to http://www.domain.com/2005/12/audience-relationships-threat-or-opportunity/).

    I had hoped to set up individual redirects for each post, but that would be a nightmare, so I deployed your Redirection plugin, using a regex filter, to at least refer people from a dated post like http://www.domain.com/weblog/2005/12/audience_relati.php to the new monthly archive page of http://www.domain.com/2005/12/ (from weblog/(.*)/(.*)/index.php to /$1/$2).

    This was when I discovered the Related Posts for Your 404 plugin (www.w-a-s-a-b-i.com/archives/2006/02/20/related-posts-for-your-404/), which is almost exactly what I've been looking for - it applied related posts functionality (based on the slug) to your 404 page - ideal..

    But I hit a snag because these two plugins appear to overlap. That is, when a user comes to the former URL http://www.domain.com/weblog/2005/12/audience_relati.php, they are redirected to http://www.domain.com/weblog/2005/12/ (which doesn't exist; should be http://www.domain.com/2005/12/) - and the 404 template kicks in and searches for likely posts... not the desired effect.

    Do you have any ideas please?
    Thanks

  15. John( author ) :

    Sep 27, 2006 4:50 am |

    Mike: Good idea, I'll implement that one.

    Rob: Regex is a BIG topic so I can only scratch the surface. For the example you gave you could try something like:

    /weblog/(\d )/(\d )/index.php => $1/$2

    This is matching anything that starts with '/weblog/', ends with 'index.php', and has two groups of digits. \d represents a digit, the means '1 or more', and the brackets indicate that the values should be captured and can then be used in the replacement string ($1 is the first set of digits, and $2 is the second).

    Note that I haven't tested this regex pattern so it may not work exactly as you want.

    To answer your questions

    1. The plugin works because WordPress 2 has a generic .htaccess rule which pushes every URL access through WordPress. This means that a plugin can hook into the URL translation stage before WordPress takes over.

    2. I think something like that won't be possible or, at the very least, will be a very complex regex pattern

  16. John( author ) :

    Oct 4, 2006 2:46 am |

    Small update in 1.3 to stop draft posts getting picked up

  17. Jonas Smith :

    Oct 19, 2006 6:51 am |

    Hi,

    The plugin seemed to work - until I changes my WP directory (which was why I thought I needed redirection in the first place). Now, when I activate the plugin (without touching any options) and request my frontpage, the browser goes "Problem loading page - Flock has detected that the server is redirecting the request for this address in a way that will never complete."

    Any ideas?
    Thx.

  18. Fra :

    Nov 3, 2006 6:31 am |

    297: if($item){
    298:= foreach ($items AS $key => $item)
    299:= $items[$key]->id = $x ;
    300: }

    :P

  19. oXfoZ :

    Nov 11, 2006 6:19 am |

    Hello,

    First of all, thanks a lot for this very efficient plugin :-)
    Nevertheless, I had to modify redirection.php to make it work fine with my installation:
    483: if ($newurl != $url && $newurl == preg_replace ('@'.$pattern.'@', $item->url_new, $newurl))
    change to:
    if ($newurl != $url && $url == $pattern)
    This checks that the page has to be redirected

    505: header ("HTTP/1.1 $type".$types[$type]);
    506: header ("Location: $newurl");
    507: exit ();

    change to:
    header ("HTTP/1.1 $type ". $types[$type]);
    header ("Location: $newurl");
    header("Status: $type ". $types[$type]);
    exit();

    To avoid errors from Apache...

    Questions:
    To redirect not only 404 pages but also others, I had to withdraw this test: 460: if (is_404 ())
    Do you have any other solution?!

    Thanks by advance!

  20. Andrey :

    Nov 16, 2006 3:42 pm |

    You are my hero! - this is exactly how I imagined such a plugin in my wildest dreams.

    I am your hero too: found and fixed a bug:
    in redirection_item.php and in redirection.php (and maybe elsewhere?) you need to replace bloginfo ('home') with bloginfo ('wpurl') to make it work for people who installed wordpress into a directory but make it appear at their document root.

    ALSO: do you have an email list (or a feed) for just product update announcements? [-your blog is fun but I am suffering from information overload :-(

  21. Andrey :

    Nov 17, 2006 1:50 am |

    oXfoZ, did your trick with 404 work? - It did not for me...

    Generally, it is important to understand that this plugin ONLY redirects from URLs that are NOT THERE and therefore generate the 404 error.

    If you need to redirect away from something that DOES exist... use other tools.

    John, may I humbly request such a feature? - Sometimes it is important to redirect away without moving the content (for maintenance reasons for example). Please?

    Thanks!

  22. andrabr :

    Dec 7, 2006 5:12 am |

    This page sais Ver 1.4, but the downloaded file is marked 1.3 - am I getting the wrong version?

  23. john :

    Dec 7, 2006 10:50 pm |

    anyone use it for wpmu ? i want to redirect http://www.sub.domain.com/blog to http://www.sub.domain.com
    is it possible ? if so how ?

  24. Mike :

    Dec 12, 2006 9:04 am |

    John,

    I think all you need to do is
    Old: /blog
    New: /

  25. Mike :

    Dec 12, 2006 9:08 am |

    John (author).

    Redirection has an issue redirecting to URL's with a ' in them.

    For example:
    old: /tag/Mikes
    New: /tag/Mike's

    It is saved as /tag/Mike\'s

    When you get a redirect it cannot resolved Mike\'s and I get a 404/not found error. I tried editing the wp-option to changes Mike\'s to Mike's but when I bring up Manage->Redirection I get a message that no redirections have been defined.

    Mike

  26. ovidiu :

    Dec 21, 2006 5:27 am |

    hi there,

    I really like your plugin but now I need a more complex redirect and I do not know how to do it.

    I am using wpmu not plain and simple wp. still the plugin works if I only coudl get it it going :-(

    currently wpmu adds /blog/ to the url of posts which I want to strip...

    i.e. my site is here: http://zice.ro here is one testpost: http://zice.ro/blog/2006/12/01/featured-month/ I want all posts redirected from http://zice.ro/blog/whatever... to http://zice.ro/whatever...

    how could I manage this with your plugin?

    It works if you manually enter http://zice.ro/2006/12/01/featured-month/ with teh blog portion already striped.

  27. ovidiu :

    Dec 21, 2006 6:05 am |

    sorry for my last post, what I was trying to do was to get rid of the blog portion, I just realized this cannot be done by this plugin as the posts do give an error without the /blog/ portion in the url, and this plugin does not do url rewriting anyway, does it?

  28. Jordan :

    Dec 28, 2006 10:46 am |

    I got this error on the "Manage >> Redirects" page:

    Warning: Invalid argument supplied for foreach() in /home/mysite/public_html/wp-content/plugins/redirection.php on line 297

  29. Jordan :

    Dec 28, 2006 11:02 am |

    D'oh... fixed it. I had all the redirection plugin files in the main plugins directory, instead of their own directory. Sorry!

  30. Mike :

    Dec 29, 2006 10:15 am |

    any chance of getting the ' in urls fixed?

    Mike

  31. Scott Sehlhorst :

    Jan 12, 2007 11:12 pm |

    The "strip www" option does not appear to be working for me.

    0. My host is yahoo small business hosting, which does not allow for .htaccess files (I hoped that your pluging worked around that issue somehow), running WP 2.0
    1. I installed v1.3. (uploaded folder and activated).
    2. I selected the "strip-www" option under the 'options' tab.
    3. I navigated to a page with the www prefix (http://www.tynerblain.com/blog/2006/03/06/top-ten-tips-for-preventing-innovation/) and the page was displayed, without redirecting (or at least without updating the URL in the address bar (firefox 1.5.0.9, in case that matters)

    Right now, my only hope seems to be finding a new host. Thanks in advance for any suggestions.

    Am I SOL? If so - I would suggest a feature - have your awesome maint UI include a "could not create .htaccess file" message or whatever, if the wordpress instance is on a server that will not support it.

  32. Mike :

    Jan 13, 2007 12:02 pm |

    Scott,

    Try Matt's no-www plugin (http://photomatt.net/2006/06/13/wordpress-no-www/).

  33. Lazaros :

    Feb 6, 2007 2:50 am |

    hi i use your plugin and redirect some pages through main categories,

    nut now example :http://www.luxury-global-hotels.com/design-hotels/ doesn't show correctly

    on old url i put the http://www.luxury-global-hotels.com/design-hotels/
    and on new url: http://www.luxury-global-hotels.com/hotels/design-hotels/

    but doesn't work is possible to help me fix this one?

    thnaks

  34. Theo Bakker :

    Feb 15, 2007 2:50 am |

    Thanks! I'm trying it out. Redirects from pages that don't exist work fine (ie
    http://www.whelp.nl/4-stappenplan-test redirects to http://www.whelp.nl/4-stappenplan
    ), but redirects for existing pages not.

    http://www.whelp.nl/4-stappenplan/stap-1-plannen should redirect to
    http://www.whelp.nl/4-stappenplan

    Any ideas?

    By the way: I found a small error in your redirection.php on line 101: you missed a ; after endforeach - this is what Jordan is referring to.

    Regards, Theo

  35. Kay :

    Mar 2, 2007 1:00 pm |

    John, can I achieve this with the above plugin?

    a. I have a site at abc.com.
    b. I also have another at abc.com/def
    c. I book the url def.com
    d. Considering I've a lot of space left at abc's server, I want to start using def.com as the main URL for abc.com/def

    Most important point here is that abc.com/def is a wordpress blog.

    Action 1:
    When I use URL forwarding at def.com's end, it sure opens up abc.com/def with no problems but all links in the page don't work properly...goes into a page not found error. Obvious, since I've not made any change at abc.com/def's end.

    Action 2:
    I need to do something at abc.com/def wordpress installation folder so that def.com becomes the default url. What should this be?

    Kay

  36. mike :

    Mar 6, 2007 7:05 am |

    Scott,

    Are you still supporting this plugin?

    Mike

  37. John( author ) :

    Mar 13, 2007 7:10 am |

    I don't know about Scott, but yes, I still am! A new version has walked out the door and hopefully that addresses a lot of problems people have had.

  38. Zain :

    Mar 16, 2007 6:26 am |

    John. You rock!

    I've tested this plugin and it's awesome. The pass-through feature is extremely powerful. Black or white hat SEO techniques - this plugin is a must for any serious WordPress user that's serious about search engine optimisation and ensuring their pages don't 404.

    The possibility to "pass-through" is open to both black and white hat uses. I'd just to point out to people considering using this plugin: "With great power comes great responsibility" - use this plugin wisely!

    Also, I would actively encourage people to support John and make a small donation where possible. Do you realise that John doesn't even have a PayPal donation form anywhere on this site? I'd hate to come here one day and not be able to find a these plugins!

  39. mike :

    Mar 16, 2007 5:06 pm |

    John,

    Sorry about that.

    This new version works extremely well. 1.7 is such a vast improvement!

    Thanks for all the hard work.

    Mike

  40. mike :

    Mar 20, 2007 7:18 am |

    John,

    I really like the new version. There 404 functionality is very useful. A do have 2 usability improvements for it though.

    1) The 404 page shows the offending link as relative url. If I click the plus to add a redirect, the source URL is filled in but with a fully qualified URL instead of the relative one from above.

    2) When I click the of the 404 page, the Source URL gets filled in. From a usability standpoint I have to scroll down to the Add new redirection section. It would be great if when I hit plus, the page focus is now the Target URL field.

    Mike

  41. marci :

    Mar 25, 2007 4:33 am |

    Looks like just what I need...but I just tried to activate in WP, and got an immediate error message, saying "call to undefined function wp_enqueue_script on line 39" Any idea why that would happen? I don't know where to find that script, is it part of WP? Thanks...

  42. marci :

    Mar 25, 2007 4:43 am |

    Sorry, I see it now. This plugin is 2.1 only. That must be it -- I am running 2.0.2. Thanks anyway!

  43. Matt :

    Mar 31, 2007 4:16 pm |

    You have absolutely saved my a**! This is plugin is a godsend. Great work. Great plugin. Thank You!Thank You!Thank You!Thank You!Thank You!

  44. John( author ) :

    Apr 2, 2007 11:26 pm |

    Mike, I've included your suggestions in 1.7.2, as well as adding a search function

  45. mike :

    Apr 3, 2007 8:27 am |

    John,

    2 more suggestions related to the 404 functionality.

    1 When adding a new redirect from 404 and clicking Add Redirection, there isn't a clear indication the action was performed. Perhaps a pop up message "Redirection Added" or just clearing the redirection fields would be fine.

    2) After adding a new 404 redirection, it would be great if that 404 link was then removed from the 404 list. It would then allow a user to work through the list. I would make this a configurable option though (Options)

    Bonus suggestion) When creating a new redirection link, it would be great if there was a preview button which showed (popup or new window) the effect of this redirection. Usually I need to create a new one for the 404, then click on the 404 link to see if my redirection fixed the issue.

    Mike

  46. Ray :

    Apr 3, 2007 8:50 pm |

    John,
    Gotta say - great plugin. I've been using it about a week after a site move and it's great. Thanks.

  47. Stefan :

    Apr 9, 2007 6:52 am |

    I guess it's a great plugin, but it doesn't work for me: When I want to add a new redirection and click the "Add Redirection"-button nothing happens. Does anybody know, how I can solve this?

  48. John( author ) :

    Apr 10, 2007 2:41 am |

    Mike, some good suggestions and included in 1.7.3

    Stefan: Are you using WordPress 2.1?

  49. Stefan :

    Apr 10, 2007 3:34 am |

    Yes, I'm using Wordpress 2.1.3.

    Maybe this is relevant for my problem: my index.php and my .htaccess aren't in the Wordpress-folder.

  50. David Nilsson :

    Apr 10, 2007 6:59 am |

    Very nice plugin! Installed it and everything seems to work great! :) Now I'll just have to add all the redirects and oldpages to WP...

  51. John( author ) :

    Apr 11, 2007 5:30 am |

    Stefan, that shouldn't affect the plugin. Do you have JavaScript enabled? What browser and version are you using?

  52. Stefan :

    Apr 11, 2007 7:16 am |

    JavaScript is enabled and I tested it with Firefox 2.0.0.3 on Windows XP and OS X and Safari 419.3. The result is the same problem...

    (By the way: Thank you for your help, John!)

  53. webee :

    Apr 13, 2007 1:04 am |

    great plugin!

    i really really need it!
    i've moved the blogs wordpress url from the site/blogdirectory to site.

    and it's really doing a great job with redirecting all those old links.
    i'm havin one major problem though!

    it redirects also urls that i wouldn't want to be redirected. like the url of the "comment this article". i think that's because the wordpress directory and blog url are not the same in my case...

    i would really appreciate your help with this. i really need the plugin's functionallity.

    thanks again!

  54. Remco :

    Apr 13, 2007 3:09 am |

    Hi John,
    Thanks so much for the plugin. I face the same problem though as Stefan. After adding a redirect nothing happens. Logging of 404's works just fine.
    I work on MacOS X with Firefox 1.5.0.11 and Safari 2.0.4 (419.3). My WP version is 2.1.2.
    thanks again!

  55. ikram :

    Apr 14, 2007 7:44 am |

    Great plugin John and yes works like a charm. All my google 404 search results are now being redirected to an existing page.

    Thanks

  56. John( author ) :

    Apr 16, 2007 2:33 am |

    Stefan & Remco: I don't know what to suggest. Without seeing the problem in action and being able to debug I'm somewhat blind. Could you mail me the output from phpinfo on your server? My development system is a Mac too, so there should be no problem there. Try 1.7.4 as I spotted a typo in a field name, which could be affecting you.

    Webee: I don't know what you mean with 'comment this article' URL?

  57. webee :

    Apr 16, 2007 11:02 am |

    hi john,

    here's what i mean:
    - because i moved my blog i want to create a redirect of all urls like:
    www. webee .ro / webeeblog / posts to www. webee .ro / posts
    - so i tried creating a redirect (using regex) like this:
    /(.*)/webeeblog/(.*) to /($1)/($2)

    - and this also creates a redirect for the page:
    www. webee .ro / webeeblog / wp-admin / ... which is a non existing page...

    i hope this is more clear than the first explanation...

    thanks again,
    webee.ro is a design blog

  58. John( author ) :

    Apr 17, 2007 6:20 am |

    Webee,

    Redirection will redirect any pattern that matches the regular expression, regardless of whether that URL exists or not. If /webeelog/wp-admin is being redirected to /wp-admin and you don't want this to happen, then you'll need to either make the regex more specific, or you can add another item to redirection for /webeelog/wp-admin/(.*) that results in a 404 (not a 301).

  59. Mark :

    Apr 28, 2007 2:08 am |

    Hello John,

    1 question and 1 suggestion,

    Question: When I want to add a redirection rule, it does not work. I saw log of apache shows "POST /wpwp-contentpluginsedirection/ajax.php?cmd=add_redirect&id=0 HTTP/1.1", apparently the path is not correct. I install my wordpress under directory "wp".

    Suggestion: Can you add a new code 410 for GONE for a certain URL? It is useful and should be easy to implement.

  60. John( author ) :

    May 3, 2007 4:03 am |

    Mark, 410 added to version 1.7.5. Can you tell me a little more about your setup? No one else has reported the same problem as you, so it may be a configuration setting that isnt being handled.

  61. Robert Irizarry :

    May 5, 2007 6:16 am |

    Hi John. I had a question. I've been looking at Permalink Redirect which as per its description "ensures that pages and entries are always accessed via the permalink. Otherwise, a 301 redirect will be issued." It appears to be a zero config plugin. Is there a way to accomplish the same with Redirection? And btw, great plugin!

  62. Mark :

    May 5, 2007 9:18 am |

    Hello John,

    I download 1.7.5, but did not see new code 410? and still have the same add new redirection problem "POST /wpwp-contentpluginsedirec
    tion/ajax.php?cmd=add_redirect&id=0 HTTP/1.1" 404 286 "http://ying.homedns.org/wp/wp-admin/edit.php?page=redirection.php"

    Regarding the setup, I run install wordpress 2.1.3 under /wp/ directory, apache 2.2.4 for win32, php 5.2.0.

  63. Stanislaw Malolepszy :

    May 11, 2007 2:28 pm |

    Hi John,

    I've encountered exactly the same problem as Stefan and Remco has. 404 logging works fine, however adding a new redirection results only in a page refresh.

    Have you already looked into this problem, or maybe I could help you somehow to resolve it?

    I'm running Wordpress 2.1.3, all other plugins disabled, on Apache/2.2.4 (Win32) with PHP 5.2.2 (extensions loaded: bcmath, calendar, com_dotnet, ctype, session, filter, ftp, hash, iconv, json, odbc, pcre, Reflection, date, libxml, standard, tokenizer, zlib, SimpleXML, dom, SPL, wddx, xml, xmlreader, xmlwriter, apache2handler, mbstring, mysql, mysqli, PDO, pdo_sqlite, SQLite) and MySQL 5.0.37-community-nt. (It's a WAMP5 installation: http://www.wampserver.com/en/)

    On the screencast the plugin looks great!
    All the best,
    Stanislaw

  64. Mike :

    May 14, 2007 10:08 am |

    John,

    As my ongoing input to improvements to redirection, it would be create to have a global option to redirect 404 errors to a specific url. Basically I see the logic, applying any redirections first then if a 404 error is hit, still log the error, but replace with a global 404 url (it could be the site url, an index page, etc.).

    Mike

  65. Mike :

    May 14, 2007 10:19 am |

    John,

    False positive on 404 error. Given the url http://www.mikekoepke.com/2006/08/07/john-bachelder-documents-gettysburg-for-posterity/#comments

    This is a valid url that brings up a single page jumping to the comments section (the anchor). (default WP behavior)

    Redirection is flagging this a 404 error, which is incorrect. Clicking on the above links takes you exactly where it should on the blog.

    Mike

  66. Mike :

    May 14, 2007 10:38 am |

    John,

    On your Regular Expressions example above, here is a scenario you might want to add:

    Replacing a character with another.

    For example, I have an image with spaces in the name: My Image.jpg. Some "stupid" sites seem to want to hit my blog as http:\www.site.com\wp-content\uploads\My Image.jpg rather than http:\www.site.com\wp-content\uploads\My Image.jpg. The image link gets correctly handled by wordpress when it renders the post (it translates to http:\www.site.com\wp-content\uploads\My Image.jpg)

    Another example:
    http://www.site.com/tags/my tag

    Once again since there isn't universal standard on how to handle multiword keywords you can get a site hitting you as http://www.site.com/tags/my-tag.

    Obviously both these bad urls can be fixed with a simple character regex substitution in redirection.

    I have to say this plugin has really come along way and is becoming an essential WP plugin. :-)

    Mike

  67. Mike :

    May 14, 2007 10:41 am |

    In my last comment it should read

    http:\www.site.com\wp-content\uploads\My(percentsign20)Image.jpg as the right url with the bad site not using percentsign20, but a blank space in the url.

    Mike

  68. Axistive :

    May 17, 2007 2:49 pm |

    Can I use this plugin to redirect http://axistive.com to http://www.axistive.com ?

  69. Axistive :

    May 17, 2007 2:56 pm |

    Sorry found out that there is a www redirect module for that. Now http://axistive.com if forwarded. Dowoad it here http://www.justinshattuck.com/wordpress-www-redirect-plugin/

  70. Michel Fortin :

    May 19, 2007 5:12 pm |

    John, each time I clear my logs (regular logs, not the 404 logs), I get this:

    Rendering of admin template [path to blog]/wp-content/plugins/redirection/view/admin/Your logs have been deleted.php failed

    I get this will all my blogs. Is there a bug?

  71. masterkey :

    May 19, 2007 11:12 pm |

    Hi, John

    Thanks for providing us this powerful plugin!
    I have installed this plugin. But it doesn't work same as Stefan, Remco and Stanislaw Malolepszy.
    But only "404 Log" function is working like them.

    I'm running WP 2.1.3ME.

    Do you have any solution about this problem?

    Please any response us about this plugin.

    (Anyway, thank you for this!)

    ***
    Sorry, my poor English.
    ***

  72. John( author ) :

    May 20, 2007 10:13 pm |

    Robert: Permalink Redirect is a great plugin and I use it myself. It does a different job to Redirection.

    Masterkey, Stefan, Remco, Stanislaw: I think I've located the problem as being due to a difference between Windows and Unix. Should be fixed in 1.7.6

    Mike: Not sure I understand your global 404 suggestion. By definition a 404 cannot redirect (if it did it would be a 301!). I tried recreating the false 404 on my test site but the #comments did not cause a 404 log message. Could you tell me what pattern matched the 404 in your logs? (press on the date in the 404 log to expand the full details). I've added an example for single-character substitution.

    Michel: Ooops, a code typo. Fixed in 1.7.6

  73. kaven :

    May 21, 2007 12:25 am |

    can it in 1.76 not work in wordpress 2.2?

  74. John( author ) :

    May 21, 2007 12:40 am |

    Redirection does work in WordPress 2.2, yes

  75. Mike :

    May 21, 2007 6:41 pm |

    John,

    What I meant is that under Redirection option being able to specify a URL to redirect to if the blog gets a 404 error, but there are no redirections defined.

    Mike

  76. John( author ) :

    May 21, 2007 9:30 pm |

    Ah, I understand. I've added a 'global redirect on unknown 404' option. A 404 will still appear in the log as a 404, but the user will be redirected to the URL if nothing else matches. Note that it's important that the 404 URL exists otherwise you'll get stuck in a redirection loop! Also note that by using this option you are hiding the 404 from the user, so a search engine will never know that a URL is incorrect (they will just think it has moved)

  77. Mike :

    May 21, 2007 11:18 pm |

    John,

    Thanks.

    Here is a small quirk. I have 2 pages of redirect rules. How do I move a rule from page 2 to page 1? I can move the redirect to the top of page 2, but there is no way to move it past position 26 to page 1. (I'm trying to move the \tag\- => \tag\ regex to the top of the list.

    Finally, thanks for the example /tags/(.*?)-(.*?) => /tags/$1 $2
    What does the regex look like to replace all dashes in a url to spaces (or )? Given a tag such as: here-is-my-tag, the rule above recursively goes through and you get:
    here is-my-tag
    here is my-tag
    here is my tag

    according to the redirection log. Ultimately it gets it right, but it takes 4 passes to resolve.

    Mike

  78. Michel Fortin :

    May 22, 2007 1:33 pm |

    Perfect. Thanks, John. Works fine, now. By the way, I love your plugins. This one is so helpful -- I used to use 404 Notifier by Alex King and modded the htaccess file each time.

    Regex is a bit of beast to tame, and some of my code were too greedy or wrong. Often, I wouldn't know where my redirects were wrong. With your plugin, and the logs it creates, I can more easily deduce where the problems are.

    Bottom line, I can safely say this plugin shaved off at least 70% from the time it takes me to fix my redirects. It's an incredibly useful plugin, and I highly recommend it to every WP install.

  79. John( author ) :

    May 22, 2007 8:32 pm |

    Thanks Michel, that's a great recommendation!

    Mike: Yeah, that's a tricky one and I was hoping no one would notice! Right now the only way to move the items across pages is to change the 'per page' dropdown so that the boundary between the two pages moves, drag the item across, and then change the per page back. Messy I know

    As for replacing all dashes, this too is tricky. It wouldn't be a problem if it was replacing all dashes, globally, but you only want it within the /tags/ directory. I can't think of a single line regex to do this. A manual workaround would be to repeat the regex with more dashes, up to an arbitrary maximum (say 10 dashes). You would need to put the regex in reverse order so the largest pattern matched first:

    /tags/(.*?)-(.*?)-(.*?)-(.*?) => /tags/$1 $2 $3 $4
    /tags/(.*?)-(.*?)-(.*?) => /tags/$1 $2 $3
    /tags/(.*?)-(.*?) => /tags/$1 $2

    This way everything would get matched by exactly one redirection. Again messy.

  80. Mike :

    May 24, 2007 6:17 am |

    John,

    Thanks for the reply. In terms of the dragging and order, I didn't realize the Per Page option was there. Doh! Setting to a larger # fixes the issue.

    I agree the regex stuff on the substitution is a little ugly. I wish these serach engines didn't decide to their own things with separators.

    Mike

  81. Mike :

    May 24, 2007 6:59 am |

    John,

    It looks like I've found a new set of weird issues and requests. At least I'm giving it a good workout. :-)

    1) Now that I know the Per Page ability is there, can we add an option for the default setting? 25, 50, 100, 250? What happens is that I go to the Redirection tab and display 100 per page. If I jump over to the 404 log, it resets to 25. I'd like to set the default to 100 and be done with it instead of changing for every tab.

    2) I think I found a regex bug. I'm trying to correct a url bug from the past that incorrectly appending some page numbers. The url being /library/book-author/page/2/. If I set up the source url with /library/(.*?)/page/(.*?) and regex enabled with a target url of /library/$1, the source url is getting detected, but what is being generated is /library/book-author2/. I'm trying to discard the $2 variable, but it looks like you're still adding it on. Did I get the regex stuff wrong?

    3) A while ago we fixed the single quote stuff in the urls. I'm still having issues with it though, but having a hard time get my hands fully around the exact issue.

    I have a tag set up as Pickett's Charge. The incoming url rightfully escapes the single quote with a source url of /tag/Pickett/\'s Charge. I have a rule set up to translate to /tag/Pickett's Charge, which correctly handles the mapping.

    Yesterday Google used the referrer url http://www.google.com/search?q=pickett's charge, which is correct but I got a 404 error, with redirection logging it as /tag​/Pickett​/\'s Charge, which should have been picked up by the above redirection, but it isn't.

    I've also seen an incoming url of ​/tag​/Pickett\\'s Charge and /tag/Pickett\'s Charge.

    a) There seems to still be an issue on how redirection is detecting single quoted url's when searching for rules
    b) I think there may also an issue on how redirection reports back the 301s for single quotes. I believe the offender url is caught with the /', my rule changes to just ', but redirection my still be reporting back as /' to the site. The reason I believe this is that I have a few 404 logged (for a different ' tag) with 404 of ​/tag​/Wilson\\\'s Creek and then a later one of /tag​/Wilson\\\\\'s Creek. So given a redirection rule of \', the 301 going back becomes \\\' to escape the single slash and then escape the single quote.

    Like I said I'm trying to get my handles around the issue.

    4) Small cosmetic issue related to 3 above. The 404 log displays the offending url as /tag​/Pickett​/\'s Charge. If I click on the plus to add a new redirection, you file in the source url as /tag/Pickett/\'s Charge.

    Thanks for all the hard work on this John. Hopefully I gave you enough info on these problems.

    Mike

  82. Mike :

    May 24, 2007 8:03 am |

    Doh! I'm a victim of the comment form translating (percent)5C when posting...

    4) Small cosmetic issue related to 3 above. The 404 log displays the offending url as /tag​/Pickett​/\’s Charge. If I click on the plus to add a new redirection, you fill in the source url as /tag/Pickett/(percent)5C’s Charge.

    3) A while ago we fixed the single quote stuff in the urls. I’m still having issues with it though, but having a hard time get my hands fully around the exact issue.

    I have a tag set up as Pickett’s Charge. The incoming url rightfully escapes the single quote with a source url of /tag/Pickett/(percent)5C’s Charge. I have a rule set up to translate to /tag/Pickett’s Charge, which correctly handles the mapping.

    Yesterday Google used the referrer url http://www.google.com/search?q=pickett(percent)27s charge, which is correct but I got a 404 error, with redirection logging it as /tag​/Pickett​/\’s Charge, which should have been picked up by the above redirection, but it isn’t.

    I’ve also seen an incoming source url of ​/tag​/Pickett(percent)5C\’s Charge, /tag/Pickett\’s Charge, and /tag​/Pickett(percent)5C(percent)5C’s Charge.

    a) There seems to still be an issue on how redirection is detecting single quoted url’s when searching for rules (\', (percent)5C', and just (percent)27)
    b) I think there may also an issue on how redirection reports back the 301s for single quotes. I believe the offender url is caught with the /’, my rule changes to just ‘, but redirection my still be reporting back as /’ to the site. The reason I believe this is that I have a few 404 logged (for a different ‘ tag) with 404 of ​/tag​/Wilson\\\’s Creek and then a later one of /tag​/Wilson\\\\\’s Creek. So given a redirection rule of \’, the 301 going back becomes \\\’ to escape the single slash and then escape the single quote.

  83. John( author ) :

    May 28, 2007 8:46 pm |

    Hi Mike,

    That's great, a lot of useful info to work with.

    1) Per page settings are now stored on a user basis.
    2) It's something to do with the regex. If you have /library/(.*?)/page/(.*) then it works fine. Redirection is just passing the regex to the standard PHP regex functions, so whatever the reasons why (.*?) isnt working is happening inside there.
    3) I've cleaned up how the URLs are displayed in the logs. Give the new version (1.7.8) a try and see if this changes anything. If there's still a problem send me the details in an email so that WordPress doesnt munch or mangle things.

  84. Mike :

    Jun 2, 2007 9:42 am |

    Hi John,

    I wanted to let 1.7.8 soak in a little before I got back to you.

    1) Page settings are working great.
    2) This seems to be working correctly now in 1.7.8. :-)
    3) The one item remaining with this, is that it show as a \' in the log display, but on the 404 page when I go to add a new redirection, it gets plopped into the old url field as \'

    On a positive note (and not sure if you did anything with the single quote in 1.7.8), is that this is working much better. I haven't seen any issues so far. The escaped single quotes are correctly getting redirected according to the log. I'll keep watching this.

    Thanks for the quick reply and changes. Redirection is definitely one of those must-have plugins and is becoming very rock solid.

    Mike

  85. John( author ) :

    Jun 11, 2007 2:07 am |

    Thanks again Mike. That last extra slash has been removed in 1.7.9

  86. Dan :

    Jun 13, 2007 6:00 pm |

    John,
    Is there a way to use your plugin to redirect all URLs without a trailing slash, to the exact same URL with a trailing slash?

    Or vice-versa, I suppose?

    I gave it a shot with what little I know of RegEx, but couldn't get it to work myself.

  87. Brian Carnell :

    Jun 19, 2007 1:51 pm |

    Does this work with Wordpress 2.2?

  88. Mike :

    Jun 19, 2007 5:16 pm |

    Brian,

    Yes it does. I have the latest 1.7.9 running on my WP 2.2 site.

    Mike

  89. John( author ) :

    Jun 28, 2007 9:31 pm |

    Dan, you can do that with Permalink Redirect.

  90. ovidiu :

    Jun 29, 2007 6:34 pm |

    funny, I jsut came here to post a link to this permalink plugin and ask if you could include that feature into your plugin :-) and just saw you mentioned it in your last post ;-)

    I wanted to ask you this because I don't want to have too many plugins active that offer the same features, and if the permalink redirection plugin offered only that I would have used it... BUT it offers some more features that your plugin offers too, so I thought it wuld make sense to incorporate the permalink redirection solution to your plugin too...

    anyway just a suggestion.

  91. John( author ) :

    Jul 1, 2007 1:37 am |

    Hi Ovidiu, the Permalinks plugin works very well and is a great combination with Redirection. I didn't include it's functionality in Redirection as that would mean duplicating someones effort for no reason.

  92. ovidiu :

    Jul 2, 2007 5:44 am |

    well, the thing is this permalink redirect plugin does a lot more than its name suggests:

    - old permalink structure => not needed as I use your redirection plugin
    - feedburner redirect => don't use it as I have a dedicated feedburner plugin that does much more
    - hostname redirect => not needed, handled by your plugin

    But like I said, just a suggestion and I will keep using both plugins although I don't need 3/4 of the permalink plugin :-) btw. nice suite of plugins you offer on your site, I use several of them.

  93. nakul :

    Jul 4, 2007 2:22 am |

    Hi...
    When i start to do active this plugin.. its showing this error.
    "Fatal error: Call to undefined function: wp_enqueue_script()"
    Pls tell me what do i do to solve this error

  94. Alex :

    Jul 5, 2007 1:02 pm |

    Wow! Cool plugin. But how could I use it to redirect a Google ad to another site? Google appends "?gclid=..." to the incoming URL. Everything works OK as long as the URL matches exactly. If this requires a regular expression, it's beyond me to write. Also, is it possible to insert the Google Analytics JavaScript tracking code?

  95. John( author ) :

    Jul 6, 2007 1:19 am |

    nakul: The plugin requires WordPress 2.1+

    Alex: I haven't used the plugin specifically with Google but it should be possible to construct an expression that will do what you want:

    (.*)\?gclid=XXX

    Should match any URL with gclid=XXX.

    By insert the tracking code do you mean insert it into redirected URLs?

  96. Alex :

    Jul 9, 2007 8:54 am |

    Thanks!

    What I really meant was a) can I use redirection to redirect everchanging URLs to the same place. With your suggestion, I think I can. And b). I want to add some JavaScript to the page that redirects, not the target page. Is that possible?

  97. Tal Galili :

    Jul 17, 2007 6:07 am |

    Hi.
    Great plugin !

    Yet, I have a BUG:
    when trying to redirect:
    http://www.humus101.com/EN
    to
    humus101.com/EN

    And it didn't work. (using WP 2.1.3) - for some reason - no page was loaded...

    (It is currently turned off)
    Any Idea what to check or how to solve ?

    Tal.

  98. John( author ) :

    Jul 19, 2007 1:29 am |

    Tal, if you want to remove the www from a URL then you'll need to use the 'root domain' option from the Options menu.

  99. Jose Luis Carneiro :

    Jul 19, 2007 8:16 pm |

    John, can you help me once again?

    Is there a way to convert Wordpress default "?p=xxx" links to permalink structure?

    I think I had that on my last Wordpress installation but now I don't see it working... Is it possible with your plugin?

  100. Tal Galili :

    Jul 20, 2007 2:32 pm |

    Thank you John, it worked :)

Page: 1 2 3 4 5 6

Pings & Trackbacks

plasticdreams.org, bloghelper.is-there.net, wordpresscn.com, blog.cfrq.net, osxcn.com, osxcn.com, blog.moskjaer.dk, smartr.cn, smartr.cn, birosketchbook.com, plasticdreams.org, mamablogga.com, blog.2i2j.com, support.pressharbor.com, theosquest.com, sunfrogservices.com, whoisalejandro.com, xn--rockbro-r2a.de, filination.com, daxdesai.com, blogmunch.com, photomatt.net, perassi.org, blogmunch.com, blog-op.com, blogohblog.com, optiniche.com, websitetology.com, onlinepresence.blogsailor.com, h4x3d.com, crawlspacemedia.com, sigt.net, webmercial.dk, niklasblog.com, carrero.es, joakimandersson.se, jasonpenney.net, blogpocket.com, alvinwoon.com, ditii.com, webmaster-source.com, imknight.net, archgfx.net, david.scatigna.it, ghusse.com, comeacross.info, vernfong.com, rein.upnl.org, stalkked.com, colinzhu.com, linickx.com, comeacross.info, comeacross.info, bbunker.com, webmaster-source.com, superchinois.net, terinea.co.uk, thekidscollegefund.com, webinventif.fr, geoffjon.s423.sureserver.com, wpthemesplugin.com, makeuseof.com, geekissimo.com, etcis.com, stefan-persson.se, raproject.com, strm.se, matthiaspospiech.de, cs-internet.de, blog.patrickkempf.de, stalkked.com, 2aw.org, squareoak.com, affiliates4u.com, puzich.com, gfmorris.com, seoportal.pl, seoportal.pl, noirlecroi.com, blogmundi.com, webregard.de, miriadz.com, InternetMarketingCampus.com, marketingvillage.biz, webproworld.com, madebyglowworm.com, strm.se, raoulpop.com, schester.com, cydeweys.com, katsuwo1.wordpress.com, netpond.com, web2.0master.de, web2.0master.de, techathand.net, rehlaonline.com, monetiweb.com, seo-scene.de, rgblog.net, me.quasidot.com, blog.aplicacionesweb.cl, kinshuksunil.com, web20.berufswahl-online.de, moswald.iirc.at, net-entrepreneur.com, nspeaks.com, myliltools.com, shamoneymaker.com, 9korn.com, tbotcotw.com, maxsailor.cn, marie-lynn.com, bloggeries.com, geekywood.com, miriadz.com, re-design.de, windowsobserver.com, exaquo.com, dogmap.jp, alosblog.com, blog.gonz0.com.ar, web2.0master.de, blogtomic.com, tbotcotw.com, bpmbulletin.com, webregard.de, austincounsel.com, yaley.blog.35.com, gregory-brine.com, hatch.org, ahtim.com, antinomian.com, u-g-h.com, 3th.be, blog.heick.nu, cssnewbie.com, grafikdesign.wordpress.com, gefledesign.se, hostsay.cn, gouwukuang.cqmmgo.com, venukb.com, esoomllub.com, skyphe.org, web2.0master.de, chenjinghua.net, computer-acquisti.com, nyseo.org.cn, nyseo.org.cn, n2b.org, mcbuzz.com, bloggeries.com, memwg.com, davefleet.com, ppcfool.com, helnes.com, tutoweb.com, zambesc.com, computer-vet.com, semplanning.com, macamour.com, suiji.net, seoabc.net, blog.bsdos.cn, blog.collinsinternet.com, thenichestorebuilder.com, seanhayes.name, elviscai.com, sem123.wordpress.com.cn, francescogavello.it, wpfans.net.cn, joeymuller.com, 561560.cn, manuelviloria.com, affiliatestuff.co.uk, blog.urbanmainframe.com, akeller.eu, terzoocchio.org, webmais.com, piggybankpie.com, blogblogblog.ws, thenichestorebuilder.com, bloggr.it, rgblog.net, sepguy.com, politeknikui.co.cc, metaphoria.splendidnoise.com, disavian.no-ip.info, textlinkbrokers.co.uk, sandlapperstudio.com, iwalking.org, tech-exclusive.com, trinitude.com, rockfuse.com, developerzen.com, blog.airdump.cz, randomkismet.com, dianeduane.com, thirtydaychallenge.com, saarbreaker.com, scribu.net, iwaruna.com, thenichestorebuilder.com, martijnbeijk.nl, bui4ever.com, u-g-h.com, geoffjones.com, webdevlounge.com, promo2.ru, anieto2k.com, pagetrafficblog.com, seo-scout.org, lessnau.com, n4gash.com, sebamueller.net, seo-blog.zabawki-naukowe.pl, sennbrink.se, eric-blue.com, geekissimo.com, wordpress-tuto.fr, optimizeguru.com, mediascreen.se, humker.com, monfx.com, sjbrown.co.uk, wpfans.net.cn, constantclick.com, 4m.pilnik.sk, bloggingrocket.com, bloggingreview.com, wpwebhost.com, ainara.elkarteak.net, bloggeries.com, socialmediasystems.com, thenichestorebuilder.com, feedsky.51vip.biz, babalum.wordpress.com, thedailygeek.fr, kimwoodbridge.com, swalif.net, freeopensourcedirectory.wordpress.com, yoast.com, wordpress-love.com, thedailygeek.fr, enterprisemastermind.com, wordpress-blog.nl, webanalytics.org.cn, velcro-city.co.uk, cherylestorgio.com, afhome.org, riku.me, yoast.com, chroniquesduweb.com, leemunroe.com, mp3dseo.com, foochow.fj.cn, foochow.fj.cn, blog.org.ru, justblog.justfly.idv.tw, pasunclou.com, 3th.be, blog.veloursnebel.de, technoburger.net, gilbertpellegrom.co.uk, blog.condatec.de, individuallocker.com, ben-ari.name, shaunlow.com, higash.net, viamag.net, shamoneymaker.com, donburnside.com, slaver.info, wp-plugin-archive.de, efetividade.net, geoffmanning.com, dreamfreeblog.com, atelier-informatique.org, 2008.allthink.com.cn, blaudenker.de, recursospelbloc.com, webuildpages.com, 1stwebdesigner.com, blogger-tips.com, enterprisemastermind.com, spontaneousderivation.com, seorook.com, artoo.se, amarnathp.blog.co.in, mamablogga.com, wp.jarretthousenorth.com, techzilo.com, encourageblogging.com, smallbizinternetsolutions.com, sunshine.co.uk, seosem.ws, thepinkcrow.com, jamesmorell.com, bcomefree.com, blog.arseo.ru, dixonjones.com, mulherdesign.com.br, gefledesign.se, besthike.com, besthike.wordpress.com, technolojixs.com, websight.net.au, thecaymanhost.com, bigdadgib.net, memberwing.com, businessintelligence.me, web-hosting.bg, gioorgi.com, carlosleopoldo.com, codepolice.net, blogsbazaar.com, enlightenedwebmastery.com, michelfortin.com, nonprofittechblog.org, maximal-reich.de, tecnovits.com, littled.net, cs-internet.de, sandynaidu.com, gregor.web.id, pichicola.com, exploringlifewordpress.wordpress.com, webministrythoughts.wordpress.com, eliteeternity.com, krivoy.intwayblog.net, scyj.be, nicksimnews.com, descary.com, infosforall.com, inetis.cn, jerryleventer.com, nicksimnews.com, wordpresshelp.bigdadgib.net, greginthedesert.net, bloghost.cn, searchdofollowblogs.com, webforumet.no, bizsoftlab.com, memoranda.egoism.jp, mestreseo.com.br, duechiacchiere.it, biotext.org.uk, tomaltman.com, hill-kleerup.org, blog.chrisbaran.net, guidesigner.com, robblatt.com, wordpress.blogos.dk, hiranthi.illutic.nl, handshake.co.za, whiteside-seo.de, easwy.com, lukejun.net, dreamtechy.cn, knowledgehut.co.cc, wpfans.net, webforumet.no, sprawnymarketing.pl, welikeitfresh.com, garmahis.com, graphicrelief.net, blogdafabrica.com.br, blog.dayic.com, glosonblog.com, vocidalweb.it, imod.co.za, meanderingpassage.com, likoma.com, codepuccino.com, patlak.eu, webloger.ru, cheslow.com, firstrank.wordpress.com, sendegel.org, bradrow.wordpress.com, imod.co.za, zaferbilgi.com, alibuybuy.com, logtee.cn, wpuse.cn, silentstreet.net, cold1a.org, digit-8.com, wp.org.cn, forcto.com, annuairedugeek.com, idea.replyreply.com, hungred.com, wordpressthemestudio.com, jasonwoods.us, higash.net, ahmadmaulana.com, warriorforum.com, alibuybuy.com, yukuai.cn, shefeekj.com, newburyonline.com, txdaily.co.za, moto-mono.net, webforumet.no, blogtr.tk, qwev.net, wptavern.com, iwanna.cn, knowledgehut.co.cc, forcto.cn, iamboredsoiblog.eu, webmastercercle.com, boycottnovell.com, iamboredsoiblog.eu, nicaragua.ysublog.com, webbriefcase.com.au, webministrythoughts.wordpress.com, wordpress.x-idc.com, thenexus.tk, 999tutorials.com, 365bibei.com, mrblackseo.com, blog.website-freelance.com, sethsandler.com, amarnathonline.co.in, weizenspr.eu, sharkseo.com, warriorforum.com, sethnickerson.com, crisiboy.com, blog.geekzone.cn, tvitre.com, bjornsennbrink.se, shifft.in, webforumet.no, harbimi.net, teqsnacks.com, zemalf.com, trrczx.com, jarretthousenorth.com, blog.webdistortion.com, un-a-un.com, dotweekly.com, jarretthousenorth.com, piksal.com, ankeshkothari.com, dangayle.com, member.wishlistproducts.com, crazylemon.net, digitale-infoprodukte.de, AreWeConnected.com, webmastern.se, p2psin.it, maiblog.thx4jp.com, zemalf.com, seosolutionsquad.com, warriorforum.com, bilgimekani.net, earningblogger.com, missnexus.com, blogidc.net, 99vis.com, larvalimages.com, memo.seobinder.net, xiushen.net, cash-cow.it, space79.com, luxuryshopper.cn, billhutchison.org, jenyburn.com, mystic-marketing.com, hzynh.cn, dkai.cn, starker-ruecken.com, technobiography.com, bluefalconmarketing.com, wp.kalyxstudio.com, senses.thirdi.com, matteomoro.net, yuanbloger.com, devhideout.com, design-tutplus.com, thietkemythuat.wordpress.com, kenming.idv.tw, bjornsennbrink.se, kinshuksunil.com, exclusivewordpress.com, wenderhost.tv, oibo.org, realestatewebsitesforless.com, dailyseoblog.com, passwater.com, newwpthemes.com, 010wu.cn, crazyvet.net, design.twmarketamerica.com, blog.we123.net, startapp.org, geektwice.com, giorgiotave.it, mellowish.com, technolik.com, webmastersjournal.com, eneset.com, blogviet.info, bullfx.com.cn, cimddwc.net, webitect.net, robbsutton.com, mynethome.net, premiumnewstheme.com, blueprintds.com, hackart.zobyhost.com, brainlessweb.com, blog.gotaogold.com, seomaven.org, linux.eduardosilva.eti.br, linux.eduardosilva.eti.br, shdding.com, seo.onnoysomoy.com, n2b.org, rooteto.com, todoendescargas.com.ar, werewp.com, onlinemarketingsociety.com, probort.net, w1zard.com, seomaven.org, muiomuio.net, muiomuio.net, blog.frompku.com, datarecycle.com, blog.estherswhite.net, neatarticles.com, adguo.com, fabianschulz.net, untwistedvortex.com, blog.25db.com, wordpressseo.cn, website-in-a-weekend.net, xijinping.ihost.tw, 66qun.com, blog4results.com, trendslab.cn, trendslab.cn, seokilavuz.com, omeremreaslan.com, kevinleary.net, techlistic.com, chotoan.com, incommunity.codex.kr, blog.hencn.com, hontouni.com, reko.web.id, maclovin.de, crovy.com, leonelson.com, wordpressfaq.org, kiak.rumhua.com, jullimoo.hostoi.com, tutorials.rongdhonu.com, tutorial.rongdhonu.com, yuemon.cn, connectedinternet.co.uk, michael-mccracken.net, ashesh.com.np, blog.neptis.info, wpbeginner.com, blog.mochiring.net, essentialblog.cn, honkin.info, blog.mochiring.net, vl99.com, sinoyan.com, justclickinc.com.au, vocidalweb.it, onlinemarketingadvisors.com, ebooktm.com, sitesketch101.com, dohuytuong.com, blogschreiber.com, namu-ws.com, invisiblewindow.com, ferdianar.com, soft-vip.com, ewa4618.vjck.com, wpdude.com, myworld.se, trafficcoleman.com, 4studio.cn, codigosutiles.com.ar, cenaynailor.com, idotcommunications.com, jonamerica.com, moskjis.com, yuina.lovesickly.com, sadhas.wordpress.com, inex.org, koprax.at, jenyburn.com, dmlabadie.com, z3zim4.iblogger.org, nulls.net, seocloak.com, rosedesrochers.todays-woman.net, brucehan.com, velocitydreams.com, top10tech.com, fractalelephant.com, redlettersstudio.com,

Help me to save time by reading these instructions!

Please report bugs in the Redirection issue tracker.

Please make feature suggestions in the Redirection feature tracker.

Please direct all support questions to the Redirection support forum.

Home | Main content | Software | Terms & Conditions | Sitemap | John Godley © 2010