web-dev-qa-db-ja.com

ルートが完全に解決されたときにApache2.4ローカルホストサブディレクトリを解決するにはどうすればよいですか?

ここでの他の回答に基づいて、Apacheにローカルホストページをロードさせることができました。

2.2構成:

Order allow,deny
Allow from all

2.4構成:

Require all granted

これは、mylocalsite.localのようなローカルホストページに最適です(cssや画像などのネストされたディレクトリに必要なアセットを含むページ全体を返します)。

しかし、mylocalsite.local/subdirのようなサブディレクトリにアクセスしようとすると、Not Found - The requested URL /subdir was not found on this server.が返されます。

仮想ホストの構成方法については、以下を参照してください。明らかに、mylocalsite.local127.0.0.1/etc/hostsに設定されています。

<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>

これが正しく解決されない理由がわかりますか?

その他のデバッグ:

> 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

Mac OS X Mavericks10.9ではすべてが問題なく機能していました。

5
Ryan

私はここで実用的な解決策を見つけました http://mallinson.ca/osx-web-development/

ヨセミテのパーツにご注目ください!

以下が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
3
Xaver