Hi All,
Having percent sign inside URL, returns bad request (error 400) to the browser. I have file name that have percent (%) sign, resides at server.
Original File name: 204153_20090605_Aluminiumacetotartraat_DCB_oordruppels_1,2%.pdf
Url in browser after clicking on download link:
http://www.example.com/204153_20090605_Aluminiumacetotartraat_DCB_oordruppels_1%2C2%25.pdf
This returns 400 error with bad request. I am using Kohana 3.
Please guide, how we can rectify using htaccess rule
Thanks is advance.
Existing htaccess file contents are as follows:
RewriteEngine On RewriteBase / <Files .*> Order Deny,Allow Deny From All </Files> RewriteRule ^(?:application|modules|system)\b.* index.php/$0 [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule .* index.php/$0 [PT]