k murugesh
k murugesh

Reputation: 3

Redirect non www to www, but its only working for home page

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

Answers (2)

Dan Russell
Dan Russell

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

Joe
Joe

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

Related Questions