La tengo redirigida a un servidor de one.com que funciona perfectamente, pero entrando en www.rogasanz.com/web/index.php salta el error 500.
Ni siquiera funciona el frontend_dev, por lo que no me genera archivos de log, ni siquiera la cache, yo creo que tiene que ser algo del htacces, pero no doy con ello, y en hostalia me dicen que es problema del código.
Código:
Lo que no entiendo es porque funciona perfectamente en el otro servidor, lo podeis ver entrando en www.rogasanz.com <IfModule mod_rewrite.c> RewriteEngine On # uncomment the following line, if you are having trouble # getting no_script_name to work #RewriteBase / # we skip all files with .something #RewriteCond %{REQUEST_URI} \..+$ #RewriteCond %{REQUEST_URI} !\.html$ #RewriteRule .* - [L] # we check if the .html version is here (caching) RewriteRule ^$ index.html [QSA] RewriteRule ^([^.]+)$ $1.html [QSA] RewriteCond %{REQUEST_FILENAME} !-f # no, so we redirect to our front web controller RewriteRule ^(.*)$ index.php [QSA,L] </IfModule>