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:
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 <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>