Ayuda con SSL

  • Autor Autor Yuston Arce
  • Fecha de inicio Fecha de inicio
Y

Yuston Arce

1
Pi
Verificado
Verificación en dos pasos activada
Suscripción a IA
Hola betas

Alguien podría ayudarme con el SSL de mi web.
Pues el problema es que cuando entró mediante faucett.us

No me redireccióna a https://faucett.us

Eso me paso desde que redireccióne mi dominio a otro.

Alguna forma como lo arreglo?
 
este nuevo dominio tiene en el .htaccess la indicacion de usar ssl?
 
este nuevo dominio tiene en el .htaccess la indicacion de usar ssl?

No amigo no he puesto nada de .htccess nunca lo pjse y me funcionaba bien.

Como puedo poner ese archivo.
 
No amigo no he puesto nada de .htccess nunca lo pjse y me funcionaba bien.

Como puedo poner ese archivo.
crea un .htaccess en el dominio y coloca:

PHP:
RewriteEngine on
RewriteCond     %{SERVER_PORT} ^80$
RewriteRule     ^(.*)$ https://%{SERVER_NAME}%{REQUEST_URI} [L,R]
 
Insertar CODE, HTML o PHP:
RewriteEngine On
RewriteCond %{HTTPS} Off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
 
Última edición:
crea un .htaccess en el dominio y coloca:

PHP:
RewriteEngine on
RewriteCond     %{SERVER_PORT} ^80$
RewriteRule     ^(.*)$ https://%{SERVER_NAME}%{REQUEST_URI} [L,R]

Tengo estos códigos En esa htacess los eliminó?
PHP:
RewriteEngine on
DirectoryIndex index.html index.php index.htm parking-page.html
RewriteCond %{SERVER_PORT} 80     

RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://btcblok.faucett.us/.*$      [NC]
RewriteCond %{HTTP_REFERER} !^http://btcblok.faucett.us$      [NC]
RewriteCond %{HTTP_REFERER} !^http://dash.faucett.us/.*$      [NC]
RewriteCond %{HTTP_REFERER} !^http://dash.faucett.us$      [NC]
RewriteCond %{HTTP_REFERER} !^http://dayuz.btcblok.xyz/.*$      [NC]
RewriteCond %{HTTP_REFERER} !^http://dayuz.btcblok.xyz$      [NC]
RewriteCond %{HTTP_REFERER} !^http://dogebox.faucett.us/.*$      [NC]
RewriteCond %{HTTP_REFERER} !^http://dogebox.faucett.us$      [NC]
RewriteCond %{HTTP_REFERER} !^http://faucett.us/.*$      [NC]
RewriteCond %{HTTP_REFERER} !^http://faucett.us$      [NC]
RewriteCond %{HTTP_REFERER} !^http://peercoin.faucett.us/.*$      [NC]
RewriteCond %{HTTP_REFERER} !^http://peercoin.faucett.us$      [NC]
RewriteCond %{HTTP_REFERER} !^http://www.btcblok.faucett.us/.*$      [NC]
RewriteCond %{HTTP_REFERER} !^http://www.btcblok.faucett.us$      [NC]
RewriteCond %{HTTP_REFERER} !^http://www.dash.faucett.us/.*$      [NC]
RewriteCond %{HTTP_REFERER} !^http://www.dash.faucett.us$      [NC]
RewriteCond %{HTTP_REFERER} !^http://www.dayuz.btcblok.xyz/.*$      [NC]
RewriteCond %{HTTP_REFERER} !^http://www.dayuz.btcblok.xyz$      [NC]
RewriteCond %{HTTP_REFERER} !^http://www.dogebox.faucett.us/.*$      [NC]
RewriteCond %{HTTP_REFERER} !^http://www.dogebox.faucett.us$      [NC]
RewriteCond %{HTTP_REFERER} !^http://www.faucett.us/.*$      [NC]
RewriteCond %{HTTP_REFERER} !^http://www.faucett.us$      [NC]
RewriteCond %{HTTP_REFERER} !^http://www.peercoin.faucett.us/.*$      [NC]

RewriteRule .*\.(jpg|jpeg|gif|png|bmp)$ https://faucett.us [R,NC]

- - - Actualizado - - -
[MENTION=9679]cicklow[/MENTION] [MENTION=113303]SnAFKe[/MENTION] hey amigos borro esos?

- - - Actualizado - - -

Gracias borre todo y use este.
PHP:
RewriteEngine On 
RewriteCond %{SERVER_PORT} 80 
RewriteRule ^(.*)$ https://faucett.us/$1 [R,L]
 
Última edición:
Borra todo el .htacess y prueba este

Insertar CODE, HTML o PHP:
RewriteEngine on  

RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

RewriteCond %{HTTPS} Off
RewriteRule ^(.*) https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://www.btcblok.faucett.us/.*$      [NC]
RewriteCond %{HTTP_REFERER} !^http://www.btcblok.faucett.us$      [NC]
RewriteCond %{HTTP_REFERER} !^http://www.dash.faucett.us/.*$      [NC]
RewriteCond %{HTTP_REFERER} !^http://www.dash.faucett.us$      [NC]
RewriteCond %{HTTP_REFERER} !^http://www.dayuz.btcblok.xyz/.*$      [NC]
RewriteCond %{HTTP_REFERER} !^http://www.dayuz.btcblok.xyz$      [NC]
RewriteCond %{HTTP_REFERER} !^http://www.dogebox.faucett.us/.*$      [NC]
RewriteCond %{HTTP_REFERER} !^http://www.dogebox.faucett.us$      [NC]
RewriteCond %{HTTP_REFERER} !^http://www.faucett.us/.*$      [NC]
RewriteCond %{HTTP_REFERER} !^http://www.faucett.us$      [NC]
RewriteCond %{HTTP_REFERER} !^http://www.peercoin.faucett.us/.*$      [NC]

RewriteRule .*\.(jpg|jpeg|gif|png|bmp)$ https://www.faucett.us [L,NC]
 
Atrás
Arriba