Just Host Web Hosting Help
Protect Specific Pages With SSL
Overview
This article will show a way to protect specific pages of your website with SSL. This may have benefits for SEO and can be used on pages that contain forms, shopping carts or any other page where users might enter sensitive information.
Access The File Manager
To setup SSL protection on specific pages you must edit the .htaccess file which can be accessed from the file manager. The steps will explain how to access the file manager.
- Login to your Just Host account.
- Go to your hosting tab.
- Click the cpanel link underneath the hosting tab.
- Under the file management section click on File Manger.
- In the directory selection popup select the Show Hidden Files Option and click go.
- In the File Manager navigate to the public_html folder.
- Select .htaccess file
Edit The .htaccess File
Once you have found the .htaccess file in the file manager these steps will explain how to edit the file to add protection.
- Right click on the .htaccess file and select Code Edit
-
At the top of the file insert the following code:
RewriteEngine On RewriteCond %{HTTPS} off RewriteCond %{REQUEST_URI} /[SSL Requested page]/ RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]
- On the 3rd line of code which says "RewriteCond %{REQUEST_URI} /[SSL Requested page]/" change [SSL Requested page] to the page you want to protect.
Example: If contact_us was the name of a page you wanted to protect you could use "RewriteCond %{REQUEST_URI} /contact_us/" - Click the Save Changes button in the top right side.
- Check your website to ensure it is functioning as expected.