I use these custom rules:
# 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]
RewriteCond %{HTTP_HOST} ^zvoort.nl
RewriteRule (.*) http://www.zvoort.nl/$1 [R=301,L]
</IfModule>
# END WordPress
See my screencast: http://screencast.com/t/MVbxELFobr1d
- Page speed optimization
- Better caching, minifying and options for CDN build in
- Mobile support build in
- Better search
- Newsletter system build it
Many thanks, keep up the good work!
Make sure your redirect rules are at the top of your .htaccess file
This fixed my issue. Many thanks!