AH10411: Rewritten query string contains control characters or spaces, referer

agasar

Verified User
Joined
May 16, 2021
Messages
70
Hello

Is there a solution for the error below?

AH10411: Rewritten query string contains control characters or spaces, referer

The following error is received when clicking on products on "Opencart" websites.

forbidden
You don't have permission to access this resource.


If the product name is entered in the "Seo" section in the screenshot, with a space in between, the website does not open.

Screenshot
https://prnt.sc/AJtowzC47BHO

Opencart gives the following error when clicking on products

forbidden
You don't have permission to access this resource.
 
Try replace spaces with +
Add the following after
RewriteBase /
RewriteRule ^(.*)\ (.*)$ /$1+$2 [L,R=301]

in main .htaccess
 
Back
Top