Foros del Web » Administración de Sistemas » Software para Servers »

bucle de redireccionamiento en Social Engine

Estas en el tema de bucle de redireccionamiento en Social Engine en el foro de Software para Servers en Foros del Web. Hola!, nose si alguien me puede ayudar ha sido un rompedero de cabeza intentar solucionar esto, me han ayudado amigos pero nada. Tengo un sitio ...
  #1 (permalink)  
Antiguo 08/01/2014, 13:50
 
Fecha de Ingreso: enero-2014
Mensajes: 2
Antigüedad: 10 años, 3 meses
Puntos: 0
Pregunta bucle de redireccionamiento en Social Engine

Hola!, nose si alguien me puede ayudar ha sido un rompedero de cabeza intentar solucionar esto, me han ayudado amigos pero nada.

Tengo un sitio midominio.com, esta en un server dedicado con SSL, el punto es que en el directorio raíz del sitio tengo instalado un Wordpress, hasta ahí ningún problema, pero cuando instalo Social Engine ( original no la versión nulleada ) en un subdirectorio ( midominio.com/test ) se produce un bucle de redireccionamiento y no me permite ver el home del Social Engine, yo creo que debe ser un problema de .htaccess que está mandando muchas re-direcciones, o alguna otra cosa que pueda ser, estos son los .htaccess

Este es el .htaccess de la raiz
Código:
RewriteCond %{SERVER_PORT} ^80$
RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [R=301,L]

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress

Este es el .htaccess del Social Engine que está en el directorio test

Código:
<IfModule mod_rewrite.c>
  Options +FollowSymLinks
  RewriteEngine On

  # Get rid of index.php
  RewriteCond %{REQUEST_URI} /index\.php
  RewriteRule (.*) index.php?rewrite=2 [L,QSA]

  # Rewrite all directory-looking urls
  RewriteCond %{REQUEST_URI} /$
  RewriteRule (.*) index.php?rewrite=1 [L,QSA]

  # Try to route missing files
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} public\/ [OR]
  RewriteCond %{REQUEST_FILENAME} \.(jpg|gif|png|ico|flv|htm|html|php|css|js)$
  RewriteRule . - [L]
  
  # If the file doesn't exist, rewrite to index
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteRule ^(.*)$ index.php?rewrite=1 [L,QSA]

</IfModule>

# sends requests /index.php/path/to/module/ to "index.php"
# AcceptPathInfo On

# @todo This may not be effective in some cases
FileETag Size

<IfModule mod_deflate.c>
  AddOutputFilterByType DEFLATE text/text text/html text/plain text/xml text/css application/x-javascript application/javascript
</IfModule>
Si me puede ayudar alguien seria fantástico, ya que llevo 2 días tratando con esto y he leído una cantidad de "soluciones" pero no me funciona ninguna
  #2 (permalink)  
Antiguo 10/01/2014, 11:41
 
Fecha de Ingreso: enero-2014
Mensajes: 2
Antigüedad: 10 años, 3 meses
Puntos: 0
Respuesta: bucle de redireccionamiento en Social Engine

Alguien que sepa?

Etiquetas: .htaccess, bucle, engine, redireccionamiento, servidores-web, social
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 14:03.