can i use 301 redirect on my .htaccess file or not

Discussion in 'Technical' started by alrnoldius, Jun 22, 2015.

  1. alrnoldius

    alrnoldius New Member

    Hi,
    My current website url is: wwwdotexampledotcom and I will release a completely new website that will use a SSL Certificate and because it’s a full new website all the url’s will be new and different from the “old” website. I'm using Hostforlife.eu hosting service, they told me to use the following lines on my .htaccess file:
    Code:
    RewriteEngine On
    RewriteCond %{HTTPS} off
    RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]
    But when researching for this on google, I have found many websites telling that we should always use a 301 redirect and to do that the .htaccess file should be:
    Code:
    RewriteEngine On
    RewriteCond %{HTTPS} off
    RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
    So in order to resume, it’s the same domain, but now with a SSL Certificate and a full new website. In this case do I need to use the 301 redirect on my .htaccess file?
    Thanks!
     
  2. till

    till Super Moderator Staff Member ISPConfig Developer

    I would use a 301 redirect in that case.
     

Share This Page