blade359 wrote
RewriteCond %{REQUEST_FILENAME} !-d
REQUEST_FILENAME Is a directory
This is supposed to be...
REQUEST_FILENAME Is not a directory
blade359 wrote
What i need to know is out of this line
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
what is the Virtual Path Regular Expression and what's the Redirect to
drupal website is in c:\web
Try this...
Virtual Path is...
^/(.*)$
Redirect to...
/index.php?q=$1
Notice where I added the forward slashes "/"