I have seen the future.
And it doesn't make sense.
(Reply)
Navigation
Recent Entries
Archive
Reading
Tags
Profile
(no subject)
Date:
2008-06-16 06:54 pm (UTC)
From:
prk.livejournal.com
That's the logical place for them.
Maybe try a rewrite all, and see if it's picking it up?
RewriteEngine on
RewriteCond %{HTTPS} !=on
RewriteRule ^/(.*)
https://apache/$1
[R,L]
You can also use the rewrite debugging to log to a file, then see if it's matching on anything (or even processing the rules!).
RewriteLog "/var/log/apache2/rewrite_log"
RewriteLogLevel 9
You want that after you turn on the engine, before you do the RewriteCond or RewriteRule.
3am here, so brains starting to shut down.
Good luck!
prk.
From:
Anonymous
This account has disabled anonymous posting.
OpenID
Identity URL:
Log in?
Dreamwidth account
Account name
Password
Log in?
If you don't have an account you can
create one now
.
Subject
HTML doesn't work in the subject.
Formatting type
Casual HTML
Markdown
Raw HTML
Rich Text Editor
Message
Profile
theweaselking
Page generated Jul. 9th, 2025 03:56 pm
(no subject)
Date: 2008-06-16 06:54 pm (UTC)Maybe try a rewrite all, and see if it's picking it up?
RewriteEngine on
RewriteCond %{HTTPS} !=on
RewriteRule ^/(.*) https://apache/$1 [R,L]
You can also use the rewrite debugging to log to a file, then see if it's matching on anything (or even processing the rules!).
RewriteLog "/var/log/apache2/rewrite_log"
RewriteLogLevel 9
You want that after you turn on the engine, before you do the RewriteCond or RewriteRule.
3am here, so brains starting to shut down.
Good luck!
prk.