XAMPPを使用してlocalhostでネットフレームワークを実行しています。インデックス ページに移動するとすべて問題ありませんが、サブ ページの URL をクリックすると 404 エラーが発生します。
Apache (httpd-vhosts.conf) エイリアスをドキュメント フォルダーに設定しました。
Alias /documents "C:/Users/username/Documents"
<Directory "C:/Users/username/Documents">
Options Indexes FollowSymLinks Includes ExecCGI
AllowOverride All
Order allow,deny
Allow from all
Require all granted
</Directory>
URL http://localhost/documents/git/projectXY/www/を使用してインデックスページに移動すると、すべて問題ありません
しかし、URL http://localhost/documents/git/projectXY/www/customer/sign/inで Sing in ボタンをクリックすると、404 エラーが発生します
wwwフォルダーにhtaccessがあります:
# Apache configuration file (see httpd.apache.org/docs/current/mod/quickreference.html)
# disable directory listing
<IfModule mod_autoindex.c>
Options -Indexes
</IfModule>
# enable cool URL
<IfModule mod_rewrite.c>
RewriteEngine On
# RewriteBase /
# prevents files starting with dot to be viewed by browser
RewriteRule /\.|^\. - [F]
# front controller
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule !\.(pdf|js|ico|gif|jpg|png|css|rar|zip|tar\.gz|map)$ index.php [L]
</IfModule>
# enable gzip compression
<IfModule mod_deflate.c>
<IfModule mod_filter.c>
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css application/javascript application/json application/xml image/svg+xml
</IfModule>
</IfModule>
私は何が間違っているのですか?