I have a rewriterule for a tinyurl system that I made for a subdirectory of our website.
Our tinyurl looks like: www.domain.org/t=xyz123
RewriteRule t=(.*)$ /map/server-test/tiny.php?gsKey=$1
However, when I installed Drupal in the main website - the tinyurl stopped working.
I tried to add a RewriteCond so that Drupal wouldn't rewrite the tinyurl, but it doesn't work.
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule t=(.*)$ /map/server-test/tiny.php?gsKey=$1
# Rewrite URLs of the form 'x' to the form 'index.php?q=x'.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !=/favicon.ico
RewriteCond %{REQUEST_URI} !=t=(.*)
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
</IfModule>