Add SSL redirection in the .htaccess file; just add a clarification to the latest blog post.

bzr-revno: 58
This commit is contained in:
Raoul Snyman 2017-02-20 14:46:29 -07:00
parent 631822fbb5
commit c2c04f2595
2 changed files with 8 additions and 3 deletions

View File

@ -48,9 +48,10 @@ unfortunately it is something that we don't have control over. Having said that,
the latest version, we'll tell you to upgrade before helping you.
</p>
If you're running into this problem while running the First Time Wizard, you need to open up Internet Explorer and
visit `https://get.openlp.org/ <https://get.openlp.org/>`_. This forces Windows to download a file that OpenLP needs.
Once you've opened up the web page, you can close it and go back to OpenLP and retry the First Time Wizard.
If you're running into this problem while running the First Time Wizard, you need to open up Internet Explorer (yes,
it **must** be Internet Explorer) and visit `https://get.openlp.org/ <https://get.openlp.org/>`_. This forces Windows
to download a file that OpenLP needs. Once you've opened up the web page, you can close it and go back to OpenLP and
retry the First Time Wizard.
If you're running into the problem where you can't seem to log in to the SongSelect importer, you need to open up
Internet Explorer and visit `SongSelect`_. Again, this forces Windows to download a file that OpenLP needs, and you

View File

@ -1,4 +1,8 @@
RewriteEngine on
# Redirect HTTP to HTTPS
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
# Make .html optional
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ $1.html [L]