I encounter a strange problem with our WordPress site.
When I check the URL:
/
Everything is fine.
When I pass several parameters to the URL, for example:
/?os=Windows¶m2=abc¶m3=def
/?os=Windows
Both will be OK.
However, when I pass the parameter cat=xxx
to the URL:
/?cat=Networking
I will get 404 not found error. It seems that only this parameter will cause problems. Why?
I encounter a strange problem with our WordPress site.
When I check the URL:
https://www.example/outlook-repair/
Everything is fine.
When I pass several parameters to the URL, for example:
https://www.example/outlook-repair/?os=Windows¶m2=abc¶m3=def
https://www.example/outlook-repair/?os=Windows
Both will be OK.
However, when I pass the parameter cat=xxx
to the URL:
https://www.example/outlook-repair/?cat=Networking
I will get 404 not found error. It seems that only this parameter will cause problems. Why?
Share Improve this question edited Sep 27, 2020 at 9:35 MrWhite 3,8911 gold badge20 silver badges23 bronze badges asked Aug 15, 2020 at 23:41 alanccalancc 416 bronze badges1 Answer
Reset to default 0Probably WordPress gets "cat" as a category query and tries to load it. Tested in a project of mine and I also get a 404 error.