Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

WordPress Setting Up SSL for WordPress

Tom Nunn
Tom Nunn
16,333 Points

Project Downloads for 'Setting Up SSL for Wordpress'?

Hi Guys,

I only have access to download the video files for this Workshop, I can't seem to locate the 'Project Downloads'? I have managed to download project files in previous courses on Treehouse.

Do you have to have a Pro subscription for Workshop Downloads?

2 Answers

Tom Nunn
Tom Nunn
16,333 Points

If anyone else is interested, you can insert the following snippet into your .htaccess file to always serve your site as https:// :)

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://yourdomain.com/$1 [R,L]
</IfModule>
jason chan
jason chan
31,009 Points

SSL is provided by your webhost.

You must buy a cert from you webhost to have ssl enabled.

Tom Nunn
Tom Nunn
16,333 Points

Hi Jason,

Thanks for the response, although I was looking for the Project Downloads from this Workshop. This involved snippets of code to place within the wp-config.php and .htaccess files.