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.
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.