Hi,
I am new to Apache config..I am facing one issue with apache configuration..I have site urls like
[url]www.example.com/SampleSite/Which Terminal?[/url]
User will request above url like
[url]www.example.com/SampleSite/Which Terminal%3F[/url]
I have rewrite rule like this
RewriteRule ^/(.*)$ www.exmaple.com/SampleSite/$1 [L,PT]
what is happening is..apache not sending "?" character to server..so server not able to resolve the URL..
I have verified apache rewrite logs..below part is coming
split uri=www.example.com/SampleSite/Which Terminal? -> uri=www.example.com/SampleSite/Which Terminal, args=<none>
How can I make sure that "?" will also be passed to server without truncating from apache? please suggest me.
Thank you