Hello everyone, such a question: There is such a page http://mysite.ru/news/%D1%82%D0%B5%D1%81%D1%82-10 similar much different only after / news / I turn to it from pages http://mysite.ru/blog/news/ The problem is that you need to save the directory that fell out of the parent, Also, if you need the htaccess file:

# BEGIN WordPress RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{DOCUMENT_ROOT}/cat/$1 -f RewriteRule ^(.*)$ /blog?category=$1 [R=301,L] RewriteCond %{DOCUMENT_ROOT}/blog/$1 -f RewriteRule ^(.*)$ /blog?category=$1 [R=301,L] RewriteRule ^category/(.+)$ http://smartywatch.ru/blog/$1 [R=301,L] # add a trailing slash to /wp-admin RewriteRule ^wp-admin$ wp-admin/ [R=301,L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule ^(wp-(content|admin|includes).*) $1 [L] RewriteRule ^(.*\.php)$ $1 [L] RewriteRule . index.php [L] # END WordPress 

0