Я изменил все файлы с .htm
на .php
внутри подпапки. Это правильный способ перенаправить все файлы с расширением .htm
в подпапке на расширение. php вместо
RedirectMatch 301 /subfolder/(.*)\.htm$ http://example.com$1.php
(я соединил следующие два)
#Redirect a sub folder to another site
Redirect 301 /subfolder http://www.example.com/
#This will redirect any file with the .html extension to use the same filename but use the .php extension instead.
RedirectMatch 301 (.*)\.html$ http://www.example.com$1.php