Current time: 04-20-2024, 12:19 AM Hello There, Guest! (LoginRegister)


Post Reply 
[Resuelto] Problema Index.html
Author Message
Piradoxlanieve Offline
Junior Member
*

Posts: 246
Joined: Jul 2009
Reputation: 0
Post: #1
[Resuelto] Problema Index.html
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
(This post was last modified: 11-03-2010 03:46 AM by kurgans.)
11-01-2010 03:00 AM
Find all posts by this user Quote this message in a reply
kurgans Offline
Moderator
*****
Moderators

Posts: 1,565
Joined: Feb 2008
Reputation: 23
Post: #2
RE: Problema Index.html
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
11-01-2010 04:53 AM
Visit this user's website Find all posts by this user Quote this message in a reply
kilburn Offline
Development Team
*****
Dev Team

Posts: 2,182
Joined: Feb 2007
Reputation: 34
Post: #3
RE: Problema Index.html
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á.
11-01-2010 07:55 PM
Visit this user's website Find all posts by this user Quote this message in a reply
Piradoxlanieve Offline
Junior Member
*

Posts: 246
Joined: Jul 2009
Reputation: 0
Post: #4
RE: Problema Index.html
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
(This post was last modified: 11-07-2010 10:36 PM by Piradoxlanieve.)
11-02-2010 05:52 AM
Find all posts by this user Quote this message in a reply
kilburn Offline
Development Team
*****
Dev Team

Posts: 2,182
Joined: Feb 2007
Reputation: 34
Post: #5
RE: Problema Index.html
Nada, ya lo dejaste bien Smile
11-02-2010 05:56 AM
Visit this user's website Find all posts by this user Quote this message in a reply
Piradoxlanieve Offline
Junior Member
*

Posts: 246
Joined: Jul 2009
Reputation: 0
Post: #6
RE: Problema Index.html
Gracias jefeTongue
(11-02-2010 05:56 AM)kilburn Wrote:  Nada, ya lo dejaste bien Smile
11-02-2010 11:47 PM
Find all posts by this user Quote this message in a reply
Post Reply 


Forum Jump:


User(s) browsing this thread: 1 Guest(s)