How can I apply an SSL certificate to my web pages
I created a site using DW CS4. Subsequently purchased an SSL certificate and need help on how to apply the certificate to the various pages.
There are about 50 pages that need to be secured.
Ther are various companies which provide SSL certificates. Some of the good names are GEOTRUST, VERISIGN and many more.
ON their websites you will find the link to apply for SSL certificate. Once you have done that they will do the verification process and will issue you a SSL certificate. The certificate issued will have to be given to your hosting company fo that they can install it on your domain and you are done. Now you will be able to browse your website with https.
If you talk to your hosting company that you are looking for SSL certificate, I am sure they will be able to get it for you.
I have already purchased the SSL certificate. It is already "set up" on the hosting company side. However, because I am using DW to generate my site and not one of their in-house products, they " do not support DW"....
If I manually type on the web address bar https://; it will correctly display the ssl certificate. My issue is how to redirect the page when the user simply types in "www.siteaddress.com".
I was given the following code to put in the top of the page:
<
?php
if($_SERVER['SERVER_PORT'] != '443') {
//Force SSL upon this page
header("Location: https://".$_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF']);
}
?>
This works fine when I view the page from within DW (F12 key).
But if I open the site in a new browser window; it displays the normal http://
In essence it is not forcing the SSL on the page...
Also, on DW Site Definition, I have set the HTTP address as : https://www.domainsite.com,
and Links relative to: Site and Document (I've tried both).
Dreamweaver has NOTHING to do with anything.
IF your hosting company says something like "WE don't support XYZ html editor" (except for Front Page because it does require special folders, etc. but you can get around that too) they are blowin' smoke.
PHP Code:
<
?php
is wrong!!! it should be
PHP Code:
<?php
IF your SSL is set up use your .htaccess to FORCE the site to https:
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.domain.com/$1 [R,L]
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.domain.com/$1 [R,L]
Where would we put this? I have a very similar question as this person.
Pretend I am at filezilla and logged into my server.
can you explain from there please?
You need to install that SSL certificate on your web server (At your web hosting service/control panel). If you need help, you can directly contact your web hosting service provider (customer service team). They might help you in installing the SSL for your website.
Bookmarks