Forum

Drupal 6.x UrlToolkit rewrite

Samiux
17 February 2011, 02:51


Hiawatha version: 7.4
Operating System: Ubuntu Server 10.10

I tried to use the UrlToolkit of Drupal at HOWTO. However, it cannot go to other pages after login and I even cannot logout. Hereby, I attached the .htaccess of Drupal 6 for your reference.

  RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !=/favicon.ico
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]


Samiux
Hugo Leisink
17 February 2011, 08:36
Try this:
RequestURI exists Return
Match ^/favicon.ico$ Return
Match /(.*)\?(.*) Rewrite /index.php?q=$1&$2
Match /(.*) Rewrite /index.php?q=$1
Samiux
17 February 2011, 10:55
Hugo,

You are very helpful. Thank you very much. Thanks for your hard work too.

Samiux
This topic has been closed.