Buenas, tengo una pagina estática (todos los ficheros son .html) y ahora los he pasado a .php, para no perder el seo, debería hacer un redireccionamiento 301 en el htaccess.
¿Alguien podría ayudarme con esto?
El código actual de mi htaccess es el siguiente
spoilerRewriteEngine on
rewritecond %{http_host} ^mipagina.com [nc]
rewriterule ^(.*)$ http://www.mipagina.com/$1 [r=301,nc]
<IfModule mod_expires.c>
<filesmatch "\.(jpg|JPG|gif|GIF|png|PNG|css|js)$">
ExpiresActive on
ExpiresDefault "access plus 30 days"
</filesmatch>
ExpiresByType text/css "access plus 1 month"
ExpiresByType text/javascript "access plus 1 month"
</IfModule>
Muchas gracias de antemano!