Cita:
Iniciado por maycolalvarez los htaccess son archivos que colocas directamente e el directorio y que apache lee, solo llevan la extensión, es decir, no tienen nombre: .htaccess
lo correspondiente a rewritecond es lo del htaccess, el resto es la config de apache
pues ya yo desde ruta : C:\xampp\apache\conf\.htaccess
ó
C:\xampp\apache\conf\extra\.htaccess
codigo .htaccess
Código:
<IfModule mod_rewrite.c>
RewriteEngine On
# Redirect /xampp folder to https
RewriteCond %{HTTPS} !=on
RewriteCond %{REQUEST_URI} xampp
RewriteRule ^(.*) https://%{SERVER_NAME}$1 [R,L]
# Redirect /phpMyAdmin folder to https
RewriteCond %{HTTPS} !=on
RewriteCond %{REQUEST_URI} phpmyadmin
RewriteRule ^(.*) https://%{SERVER_NAME}$1 [R,L]
# Redirect /security folder to https
RewriteCond %{HTTPS} !=on
RewriteCond %{REQUEST_URI} security
RewriteRule ^(.*) https://%{SERVER_NAME}$1 [R,L]
# Redirect /webalizer folder to https
RewriteCond %{HTTPS} !=on
RewriteCond %{REQUEST_URI} webalizer
RewriteRule ^(.*) https://%{SERVER_NAME}$1 [R,L]
</IfModule>
pero no cargar
https://localhost/
No seass malos hazo paro Ayuda!! Me puede alguien decir
tengo version XAMPP 1.7.3!