Mi problema es que no puedo redireccionar cuando escribo www.pagina.edu.co a https://www.pagina.edu.co o pagina.edu.co; me sale "La página no se está redirigiendo adecuadamente" este es mi htaccess
Cita:
Que estoy haciendo mal?? la idea es que cuando escriba cualquiera de esas condiciones me lo redireccione a https://www.pagina.edu.coOptions -Indexes
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^https://pagina.edu.co/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^https://paginal.edu.co$ [NC]
RewriteCond %{HTTP_REFERER} !^https://www.pagina.edu.co/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^https://www.pagina.edu.co$ [NC]
RewriteCond %{HTTP_REFERER} !^http://pagina.edu.co/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://pagina.edu.co$ [NC]
RewriteCond %{HTTP_REFERER} !^http://www.pagina.edu.co/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://www.pagina.edu.co$ [NC]
rewriterule ^(.*)$ https://www.pagina.edu.co
RewriteRule .*\.(jpg|jpeg|gif|png|bmp)$ - [F,NC]
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^https://pagina.edu.co/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^https://paginal.edu.co$ [NC]
RewriteCond %{HTTP_REFERER} !^https://www.pagina.edu.co/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^https://www.pagina.edu.co$ [NC]
RewriteCond %{HTTP_REFERER} !^http://pagina.edu.co/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://pagina.edu.co$ [NC]
RewriteCond %{HTTP_REFERER} !^http://www.pagina.edu.co/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://www.pagina.edu.co$ [NC]
rewriterule ^(.*)$ https://www.pagina.edu.co
RewriteRule .*\.(jpg|jpeg|gif|png|bmp)$ - [F,NC]
Agradezco de antemano la ayuda que me puedan brindar