Reputation: 3
I have done non www to www redirection for my site but only home page is working fine but category page is not showing redirection from non www to www. This is wordpress based website. Any help would be appreciated.
Thanks
Upvotes: 0
Views: 1144
Reputation: 1
Have you set the Home URL and Site URL of your domain with www in the Dashboard >> Settings >> General ? If yes, then the non-www site will always get redirected to www site.
Upvotes: 0
Reputation: 1822
This is how I do my non-WWW to WWW redirects.
In the .htaccess file, add this:
# REDIRECT NON-WWW TO WWW
RewriteEngine On
RewriteCond %{HTTP_HOST} ^domain\.com [NC]
RewriteRule (.*) http://www.domain.com/$1 [L,R=301]
Replace "domain" and "com" as necessary for your site.
Upvotes: 1