Jump to content

.htaccess redirect non-www to www domain


gmclelland
 Share

Recommended Posts

I upgraded my sites to Processwire 3.0.135 dev, but unfortunately I'm having a problem with the new .htaccess file introduced in 3.0.135.

I'm unable to get my sites to redirect from the bare domain to the www domain.  Example: http://mysite.com should redirect to https://www.mysite.com

I have tried commenting out these sections, but it didn't work.

  # -----------------------------------------------------------------------------------------------
  # 9. Optionally Force HTTPS (O) 
  # -----------------------------------------------------------------------------------------------

  # 9A. To redirect HTTP requests to HTTPS, uncomment the lines below: 
  # -----------------------------------------------------------------------------------------------
  RewriteCond %{HTTPS} !=on
  RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

and

  # 13A. Redirect domain.com and *.domain.com to www.domain.com (do not combine with 13B): 
  # -----------------------------------------------------------------------------------------------
  RewriteCond %{HTTP_HOST} !^www\. [NC]
  RewriteCond %{SERVER_ADDR} !=127.0.0.1
  RewriteCond %{SERVER_ADDR} !=::1
  RewriteRule ^ %{ENV:PROTO}://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

If I access mysite.com it gives me the following error when accessing http://mysite.com

404 page not found (no site configuration or install.php available)

If I access www.mysite.com, the website functions correctly.

------------------------------------------------------------

As a work around, I ending using this bit of code from version 300 .htaccess file.

  RewriteCond %{HTTP_HOST} !^www\. [NC]
  RewriteRule ^ http://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

That works. I can go to mysite.com and it will redirect to https://www.mysite.com

Is anyone else having trouble redirecting your domain to the https://www. version with the new .htaccess file?

Here is the full .htaccess that doesn't work for me

  Reveal hidden contents

I just wanted to check with everyone here before I submit a bug report on Github.

Also, does anybody know the correct location to insert redirects for other domains as well? Example myothersite.com should redirect to https://www.mysite.com

  • Like 1
Link to comment
Share on other sites

  • 1 year later...

Glad I could help!  I think I was waiting to get some feedback from other people to make sure it wasn’t just me before I report it?

For me it happens locally and in production.

Local uses homebrew Apache and Php on my mac.

Production uses https://serverpilot.io which uses Nginx for static assets with a proxy to Apache for Php.

Link to comment
Share on other sites

  • 4 months later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...