.htaccess を使う

httpd.conf を以下のように変更すればよい

変更前

<Directory />
    Options FollowSymLinks
    AllowOverride None
</Directory>

変更後

<Directory />
    Options FollowSymLinks
    AllowOverride All
</Directory>

目次へ