Re: [us...@httpd] Apache SSL and Rewrite Rules

2009-03-31 Thread Nick Cooper
I've never been sure on where you place the log line RewriteLog "d:/logs/rewrite.log" Is it in the vhost? no content is being written to the file. On Tue, Mar 31, 2009 at 12:18 PM, Krist van Besien < krist.vanbes...@gmail.com> wrote: > On Tue, Mar 31, 2009 at 12:29 PM, Nick Cooper > wrote: > >

Re: [us...@httpd] Apache SSL and Rewrite Rules

2009-03-31 Thread Krist van Besien
On Tue, Mar 31, 2009 at 12:29 PM, Nick Cooper wrote: > I am having some problems with SSL and Rewrite rules, the rewrite rule works > when not under SSL. > I understand that an SSL connection occurs before any Rewrite rule has a > chance to take place, is this correct? > Is there anyway to still u

Re: [us...@httpd] Apache SSL and Rewrite Rules

2009-03-31 Thread Nick Cooper
I have the following .htaccess AuthName "Admin" AuthUserFile .htpasswd Require valid-user Options +FollowSymLinks RewriteEngine On RewriteBase /folder RewriteRule ^$ index.php RewriteRule ^admin/$ admin/admin.php RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule

Re: [us...@httpd] Apache SSL and Rewrite Rules

2009-03-31 Thread Eric Covener
On Tue, Mar 31, 2009 at 6:29 AM, Nick Cooper wrote: > I am having some problems with SSL and Rewrite rules, the rewrite rule works > when not under SSL. > I understand that an SSL connection occurs before any Rewrite rule has a > chance to take place, is this correct? This is correct, the handsha

[us...@httpd] Apache SSL and Rewrite Rules

2009-03-31 Thread Nick Cooper
I am having some problems with SSL and Rewrite rules, the rewrite rule works when not under SSL. I understand that an SSL connection occurs before any Rewrite rule has a chance to take place, is this correct? Is there anyway to still use Rewrite with SSL? Thank you, Nick