Have I read the related troubleshooter articles above before posting (which pages?)? Yes
Have I searched the tickets before posting? Yes
Have I read the documentation before posting (which pages?)? Yes, about .htaccess Maker
Joomla! version: 2.5.14
PHP version: 5.3.14
Admin Tools version: 2.5.8
Description of my issue:
I would like to tweak File injection protection
that it would allow one GET var:
utm_referrer=http://...
This is generated by Google Analytics Experiments which I am using on my site.
Here is original protection:
##### File injection protection -- BEGIN
RewriteCond %{REQUEST_METHOD} GET
RewriteCond %{QUERY_STRING} [a-zA-Z0-9_]=http:// [OR]
RewriteCond %{QUERY_STRING} [a-zA-Z0-9_]=(\.\.//?)+ [OR]
RewriteCond %{QUERY_STRING} [a-zA-Z0-9_]=/([a-z0-9_.]//?)+ [NC]
RewriteRule .* - [F]
##### File injection protection -- END