У меня было имя страницы как the-book.html, но теперь я изменил имя страницы на about-the-book. Я использовал правило перезаписи как
`Redirect 301 /the-book.html http://www.xxx.com/about-the-book.html`
но это не работает.
мой полный код .htaccess находится здесь
RewriteRule ^/the-book.html$ http://www.xxx.com/about-the-book.html [R=301]
# 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