URL parameters twice in wp-admin
-
Hi, It is a really weird issue, the website works fine but into wp-admin when I go to some option like post-categories, the original link is something like
wp-admin/edit-tags.php?taxonomy=category
but when the page is opened, it automatically repeat the GET parameter resulting in something likewp-admin/edit-tags.php?taxonomy=category%3Ftaxonomy%3Dcategory
of course if I reload the page I get a 500 error. I’ve been searching if is there any problem in apache wordpress conf but the error persists even disabling everything (theme, plugins, apache rewrite rules).Even though If type the url with two parameters e.g.
?taxonomy=category¶m2=bla
the url is not modified, it looks as if the server requires 2 parameters and if it found just one, it tries to repeat it. :OUbuntu 18.04.1 LTS
PHP Version: 7.2
Apache Version: Apache/2.4.29 (Ubuntu)
Wordpress Version: 4.9.8Here my .htaccess
<IfModule mod_rewrite.c> RewriteEngine on RewriteBase /site/ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_URI} !^/wp-admin/ RewriteRule ^(.*)$ /site/index.php/$1 [NC,L] </IfModule>
- The topic ‘URL parameters twice in wp-admin’ is closed to new replies.