Ver Mensaje Individual
  #1 (permalink)  
Antiguo 10/06/2015, 11:50
Montes28
 
Fecha de Ingreso: septiembre-2010
Mensajes: 1.853
Antigüedad: 13 años, 7 meses
Puntos: 6
Problema para desplegar correctamente sitio web

hola amigos estoy obteniendo el siguiente error

Forbidden

You don't have permission to access /app/public/ on this server.
Apache/2.2.15 (CentOS) Server at 192.168.102.50 Port 80

esta es la url que estoy escribiendo en el navegador

la configuracion que tengo es:
en /etc/httpd/conf.d tengo un archivo app.conf el cual contiene:

Código BASH:
Ver original
  1. alias /amenazas "/html/app/"
  2.  
  3. <Directory "/html/app/">
  4.         RewriteEngine On
  5.         Options FollowSymLinks
  6.         AllowOverride All
  7.         Order allow,deny
  8.         Allow from all
  9. </Directory>

y en le .htacces tengo .htaccess

Código BASH:
Ver original
  1. <IfModule mod_rewrite.c>
  2.     Options -MultiViews
  3.     RewriteEngine On
  4.     Rewritebase /app/public/
  5.     RewriteCond %{REQUEST_FILENAME} !-d
  6.     RewriteCond %{REQUEST_FILENAME} !-f
  7.     RewriteRule ^ index.php [L]
  8. </IfModule>

que estoy haciendo mal? a que se debe el error?