経験豊富な Web 開発者として、これを投稿するのはばかだと思います。どういうわけか私は問題を抱えがち.htaccess
です。/wiki
次のようにして、すべてのリクエストを index.phpにルーティングしようとしています...
RewriteEngine On
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ./ /index.php [L]
仮想ホスト:
<VirtualHost *:80>
ServerName mysite.local
DocumentRoot "/var/www/mysite/public_html"
<Directory "/var/www/mysite/public_html">
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
</VirtualHost>
アクセスしようとするhttp://mysite.local/wiki/asdf
と、404 エラーが発生します。
Apacheのエラーログには何も表示されません