I’ve got below 301 redirect the bottom one I would like to get it working but it’s not working at the moment.
# BEGIN WordPress
<IfModule mod_rewrite.c>
Options +FollowSymLinks
Options +Indexes
RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
RewriteCond %{HTTP_HOST} ^domain.com.au$
RewriteRule ^/?$ "http://www.domain.com.au/" [R=301,L]
RewriteRule ^author/privacy?$ privacy [R=301,L]
Is there a reason why?
I would like to redirect author/privacy to privacy…
Order of the rules is of problem here. Here is the fixed version:
Just had the same problem, but this is the answer…..
Use relative URL’s not full http:// etc.
Cut the below code and add to your .htaccess file and add to your root directory