ispCP - Board - Support
[Resuelto] Problema Index.html - Printable Version

+- ispCP - Board - Support (http://www.isp-control.net/forum)
+-- Forum: ispCP Omega International Area (/forum-22.html)
+--- Forum: Spanish Corner (/forum-29.html)
+--- Thread: [Resuelto] Problema Index.html (/thread-12012.html)



[Resuelto] Problema Index.html - Piradoxlanieve - 11-01-2010 03:00 AM

Hola estoy como loco no me muestra las index.html

Forbidden 403 /

Directory index forbidden by Options directive:

He probado a añadir:

<IfModule mod_dir.c>
DirectoryIndex index.php index.html index.htm index.xhtml
</IfModule>

/etc/apache/site-enebled/00_master.conf

en ubuntu el httpd.conf esta en blanco he añadido esto pero nada

DirectoryIndex index.html index.htm index.php index.shtml index.cgi index.pl index.xhtm

restart server y nadaSad


RE: Problema Index.html - kurgans - 11-01-2010 04:53 AM

Yo creo que tu problema es de permisos, o de propietario mira a ver quien es el propietario del archivo y que permisos tiene, no tienes que tocar nada en los modulos


RE: Problema Index.html - kilburn - 11-01-2010 07:55 PM

Quote:Directory index forbidden by Options directive:

Ahí te dice el problema clarito Tongue Tienes puesto un
Code:
AllowOverride None
Para ese directorio, así que no te deja cambiar el "DirectoryIndex". Cambia lo de arriba por
Code:
AllowOverride Indexes
y te funcionará.


RE: Problema Index.html - Piradoxlanieve - 11-02-2010 05:52 AM

Code:
<IfModule mod_fastcgi.c>
        ScriptAlias /php5/ /var/www/fcgi/dominio.tld/
        <Directory "/var/www/fcgi/dominio.tld">
            AllowOverride None
            Options +ExecCGI -MultiViews -Indexes
            Order allow,deny
            Allow from all
        </Directory>
    </IfModule>

Code:
<Directory /var/www/virtual/dominio.tld/htdocs>
        # httpd dmn entry PHP support BEGIN.
        # httpd dmn entry PHP support END.
        Options -Indexes Includes FollowSymLinks MultiViews
        AllowOverride All
        Order allow,deny
        Allow from all
    </Directory>
Lo mas logico seria en este no? pero pone ALL:S


AllowOverride Indexes--> Seria esto no?

De todas formas cree un .htaccess con esto

Options +Indexes +MultiViews +FollowSymlinks

y funciona pero bueno me gustaria saber si seria esa opcion la que tu me decias.

Gracias


RE: Problema Index.html - kilburn - 11-02-2010 05:56 AM

Nada, ya lo dejaste bien Smile


RE: Problema Index.html - Piradoxlanieve - 11-02-2010 11:47 PM

Gracias jefeTongue
(11-02-2010 05:56 AM)kilburn Wrote:  Nada, ya lo dejaste bien Smile