I have a base .htaccess rules on xampp localhost project
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /www/project.ru/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /www/project.ru/index.php [L]
</IfModule>
# END WordPress
If I I fill this path - www/project.ru/popular/ I want that redirected me to popular.php in main theme and it allow access Now I receive "404 Page not found"
How make it?