Forum Moderators: phranque
There is a special substitution string named '-' which means: NO substitution! This is useful in providing rewriting rules which only match URLs but do not substitute anything for them.
R=410 syntax works only on recent 2.x Apache versions (don't ask me the exact version number). RewriteCond %{QUERY_STRING} ^route=product/browse [NC]
RewriteRule ^index\.php$ - [G] example.com/index.php?route=product/browse is requested. example.com/?route=product/browse or example.com/index.php?somestuff=whatever&route=product/browse is requested.