I have a wordpress website.But when I hit the url of indiavidual page without www it redirects to homepage instead of that page. All I want to fix it so that it redirects to that page only.
My website is : http://www.searzilla.co.uk/
PROBLEM: If I hit searzilla.co.uk/design/ ,it redirects to home page instead of design page.
Can anyone has any solution for this?
my htaccess:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Try This: