0

xampp1.8.1に正常にアップグレードしました。ApacheとMySQLサーバーは正常に起動します。

ただし、エイリアスをhttpd.confで機能させることができません。IEはページを表示できません

私は持っています:

Alias /tnl "H:northern_light"
<Directory "H:northern_light">
     DirectoryIndex index.php    
     Options All
     AllowOverride All
     Require all granted
</Directory>

私は多くのオプションを試しました。また、Apacheのポートを変更してみました。

127.0.0.1 / tnl、localhost/tnlなどを試しました

何か案は?

4

2 に答える 2

1

ディレクトリ オプションを次のように置き換えます。

    Alias /tnl "H:/northern_light"
    <Directory "H:/northern_light">
        AllowOverride None
        Options None
        Require all granted
    </Directory>

私は個人的に、オプションで「none」の代わりに「Indexes MultiViews」を使用して、ディレクトリのインデックスを許可します。このような:

    Alias /tnl "H:/northern_light"
    <Directory "H:/northern_light">
        AllowOverride None
        Options Indexes MultiViews
        Require all granted
    </Directory>
于 2013-06-08T21:55:03.147 に答える
-1

ApacheFriends への Acordin - XAMPP の作成者

# Alias: Maps web paths into filesystem paths and is used to
# access content that does not live under the DocumentRoot.
# Example:
# Alias /webpath /full/filesystem/path
#
# If you include a trailing / on /webpath then the server will
# require it to be present in the URL.  You will also likely
# need to provide a <Directory> section to allow access to
# the filesystem path.

つまり、次のことを意味します。

于 2013-06-08T21:51:42.527 に答える