Hello. I have some issues with the mod_rewrite. My situation is i have domain like so with wordpress being installed on the tld
www.domain.com. I have .php pages though, that i cant import into wordpress, they are like so
www.domain.com/1/page.php,
www.domain.com/2/page.php, and so on. I would like to rewrite those .php extensions into .html or .htm. My problem is when i add this rules
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^(.*)\.htm$ $1.php [NC]
it doesnt work and i cant log into my wordpress backend. I added that to the .htaccess file on the root level, and didnt touch any of the other wordpress stuff. Anyone know how to properly do this?