Como posso obter subdiretórios de localhost do Apache 2.4 para resolver quando a raiz é resolvida perfeitamente?

4

Com base em outras respostas aqui, consegui fazer com que o Apache carregasse as páginas do host local:

2.2 configuração:

Order allow,deny
Allow from all

Configuração 2.4:

Require all granted

Isso funciona muito bem para páginas de localhost como mylocalsite.local (retorna a página inteira, incluindo recursos necessários em diretórios aninhados como css e imagens).

Mas quando tento visitar subdiretórios como mylocalsite.local/subdir , ele retorna Not Found - The requested URL /subdir was not found on this server.

Veja abaixo como meus hosts virtuais estão configurados. Obviamente mylocalsite.local está definido para 127.0.0.1 em /etc/hosts para chegar até aqui.

<VirtualHost *:80>
    ServerName mylocalsite.local
    ServerAlias www.mylocalsite.local mylocalsite_alt.local

    <Directory /Users/my_username/Sites/mylocalsite/html>
        AllowOverride none
        Options all
        Require all granted
        Deny from none

        <IfModule mod_rewrite.c>
            Options +FollowSymLinks -MultiViews
            RewriteEngine On

            RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
            RewriteRule ^(.*)$ http://%1/$1 [R=301,L]

            # Redirect all /img/abc to /img/index.php/abc
            RewriteCond %{REQUEST_FILENAME} !-f
            RewriteCond %{REQUEST_FILENAME} !-d
            RewriteRule ^img/(.*) img/index.php/$1 [L]

            # redirect all directories to root using PATH variables
            # Ex. /abc/def/ redirects to /index.php/abc/def/
            RewriteCond %{REQUEST_URI} !=/server-status
            RewriteCond %{REQUEST_FILENAME} !-f
            RewriteCond %{REQUEST_FILENAME} !-d
            RewriteRule (.*) index.php/$1 [L]
        </IfModule>
    </Directory>

    DocumentRoot /Users/my_username/Sites/mylocalsite/html
</VirtualHost>

Você pode ver porque isso não está resolvendo corretamente?

Outra depuração:

> sudo apachectl configtest
Syntax OK

> httpd -S
VirtualHost configuration:
*:80                   is a NameVirtualHost
     default server sandbox (/private/etc/apache2/vhosts/virtual_hosts.conf:8)
     port 80 namevhost sandbox (/private/etc/apache2/vhosts/virtual_hosts.conf:8)
             alias sandbox
     port 80 namevhost mylocalsite.local (/private/etc/apache2/vhosts/virtual_hosts.conf:20)
             alias www.mylocalsite.local
             alias mylocalsite_alt.local
ServerRoot: "/usr"
Main DocumentRoot: "/Users/my_username/Sites"
Main ErrorLog: "/private/var/log/apache2/error_log"
Mutex default: dir="/private/var/run/" mechanism=default 
Mutex mpm-accept: using_defaults
Mutex proxy-balancer-shm: using_defaults
Mutex proxy: using_defaults
PidFile: "/private/var/run/httpd.pid"
Define: DUMP_VHOSTS
Define: DUMP_RUN_CFG
User: name="_www" id=70 not_used
Group: name="_www" id=70 not_used

Tudo estava funcionando perfeitamente no Mac OS X Mavericks 10.9.

    
por Ryan 20.10.2014 / 18:15

1 resposta

3

Encontrei uma solução de trabalho aqui link

Por favor, observe as peças para Yosemite!

Verifique se os seguintes itens não foram comentados no httpd.conf:

LoadModule vhost_alias_module libexec/apache2/mod_vhost_alias.so
LoadModule php5_module libexec/apache2/libphp5.so
LoadModule alias_module libexec/apache2/mod_alias.so
LoadModule rewrite_module libexec/apache2/mod_rewrite.so
Include /private/etc/apache2/extra/httpd-vhosts.conf
    
por 20.10.2014 / 20:23