I received a request asking to mask an url like this
commercial.com/en/test/page1 to commercial.com/en/test.page1 (as using selectos)
I tried with the next: RewriteRule "^/en/test.page1" "https://${CommercialName}/en/test/page1" [L,P]
In that case this does not work by sendming me the next server message:
Bad Request
Your browser sent a request that this server could not understand. Size of a request header field exceeds server limit.
But if I change my rule to this works: RewriteRule "^/en/test.pagetest" "https://${CommercialName}/en/test/page1" [L,P]
But then I add another rule and it shows me the same
RewriteRule "^/en/test.pagetest" "https://${CommercialName}/en/test/page1" [L,P] RewriteRule "^/en/test.page2test" "https://${CommercialName}/en/test/page2" [L,P]
Do anyone knows why this error is caused?
PS: