I also have two sites, both been fine this week. According to Redirection logs it’s been working today. But now, none of redirection on both sites working. I also use 4.6.1, but not sure when it was upgraded.
I think it’s either time to move to a new plug in, or write all of the redirects directly in the .htaccess file of the sites.
I like the statistics.
Actually, mine redirections works now. No clue what happend, maybe some cache at my service provider!?
I don’t really care about the stats right now. The redirects on two of the sites are for structural reasons. I wrote them in the .htaccess file and stopped this plugin and am happy.
@solidwalnut how do I do a rewrite in the.htaaccessfile?
@rcarpadus You have to be able to access the root directory of your website. First off, this is something that you definitely do not want to mess with if you don’t know about websites as incorrectly altering this file will break your website.
Get help from your webhost if you need.
The .htaccess file is just a notepad file, but you save the file exactly as .htaccess. It will look similar to this (don’t use this text, it could be wrong for your site):
All of the redirects are written at the top of the file, like the first line below:
*****
Redirect 301 /category/merchandise-right hand http://yoursite.com/merchandise-right
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
</IfModule>
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
</IfModule>
# END WordPress
*****