Hi cmgdesigns,
Sorry for the delay in reply, I was not around for the holiday weekend.
To answer the First Question:
Will this plugin preserve the referrer info on redirects?
Yes it will – BUT only when you are using a 301 redirect AND the content on the new page has the same relevance as the original page. If you just moved a page to a new site, the search engine should retain the link ranking for the URL (for the most part – but the domain name difference itself may change the ranking relevance slightly). If you redirect a page to a completely different page with different content, then the new page will be ranked according to the content on the new page, not on what you had on the original. Make sense?
Second Question:
And secondly, will it work on image redirects?
Yes it will – however, you have to make sure it follows the normal rules of the .htaccess
file. When WordPress creates the .htaccess
file for permalinks, it adds some basic pattern matching that does the following:
- If the URL to a file or folder actually finds a ‘real’ file or folder (meaning it exists on the server), load that file or folder.
- If a file or folder does not exist, load WordPress (via the index.php file int he root) and look for the requested permalink URL.
- If that URL permalink does not exist, throw a 404 error and load the 404 page.
Now, to actually make use of the plugin’s redirection functions, WordPress needs to load itself. BUT, if a file or folder exists on the server, the .htaccess
file states that it will load that file first – ALWAYS. That means that WordPress will NEVER load if the file exists, which means the plugin will NEVER fire its redirect function (because it relies on WordPress to work).
To make use of an image redirect (or ANY media file redirect for that matter), you first need to make sure it does not exist on the server. That is the most common overlooked thing when trying to redirect images.
Make sure the image file (in your example, example.com/image.gif
) does not exist, then you should be able to add it to the Quick Redirects to go to some other image.
Hope this makes sense.
Let me know if you still have problems.
Regards,
Don