Support

Account

Home Forums Add-ons Options Page Options page save redirecting to 404 Reply To: Options page save redirecting to 404

  • Hi @hube2,

    The .htaccess has the basic WordPress parts:

    
    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    # END WordPress

    Good idea to check if any reserved names are being used. Looked into the site’s functions and plugins and everything looks prefixed to remove the chances of conflict with reserved names.

    The 404 URL is http://example.com/wp-admin/admin.php?page=example-settings, and the error page shown is our custom 404.php.

    Edit to add: When hitting the Update button on the settings page, usually `&message=1″ is appended to the URL to display the “Options Updated” notice. This doesn’t happen when the URL field error occurs.

    Thanks for investigating, John.