• This plugin creates 500 internal server error.
    One of the settings in the htaccess file it ads does a rewrite for the base URL, but if you are installed on a forward directory, it causes errors…`

    This is wrong:
    # BEGIN WpFastestCache
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{HTTPS} =on
    RewriteCond %{HTTP_HOST} ^www.mysite.com

    Should have the forward directory:
    # BEGIN WpFastestCache
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /shop/
    RewriteCond %{HTTPS} =on
    RewriteCond %{HTTP_HOST} ^www.mysite.com

    • This topic was modified 6 years, 8 months ago by askutah.
    • This topic was modified 6 years, 8 months ago by askutah.
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘500 internal server error’ is closed to new replies.