• solidwalnut

    (@solidwalnut)


    I have two sites using this plug, and the plug simply quit working. I can not come up with any indication as to why. They were working one day and not the next. Both sites were upgraded to 4.6.1 days ago.

    Curious if this is happening to other sites. Let me know what info I can give to help troubleshoot.

    Thanks,
    Steve

Viewing 6 replies - 1 through 6 (of 6 total)
  • mostman

    (@mostman)

    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.

    Thread Starter solidwalnut

    (@solidwalnut)

    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.

    mostman

    (@mostman)

    I like the statistics.
    Actually, mine redirections works now. No clue what happend, maybe some cache at my service provider!?

    Thread Starter solidwalnut

    (@solidwalnut)

    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?

    Thread Starter solidwalnut

    (@solidwalnut)

    @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 https://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

    *****

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Simply quit working’ is closed to new replies.