I have Drupal 7 running on Apache but when I switch the Database and web root over to LWSW (5.0 Standard) I get several errors that I am pretty sure relate to the standard htaccess rules and most notably the rewrite rules. Has anybody out there been able to successfully get Drupal 7 to work right with LSWS 5.0? How about with http2? Any Secrets?
Note: I did rebuild PHP 5.5 with PDO support (and other items as well like FTP, etc.) so I at least got that far and I would be happy to write up a tutorial if I can get this problem resolved.
These are the stock rewrite rules included in the base .htaccess file with Drupal 7:
Should LSWS be able to understand all of these?
Note: I did rebuild PHP 5.5 with PDO support (and other items as well like FTP, etc.) so I at least got that far and I would be happy to write up a tutorial if I can get this problem resolved.
These are the stock rewrite rules included in the base .htaccess file with Drupal 7:
Code:
RewriteEngine on
RewriteRule ^ - [E=protossl]
RewriteCond %{HTTPS} on
RewriteRule ^ - [E=protossl:s]
RewriteRule ^ - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteRule "(^|/)\." - [F]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !=/favicon.ico
RewriteRule ^ index.php [L]
Last edited: