だから私はこれにあまりにも多くの時間を費やしました - 少し必死になっています.
.htaccess:
Options +FollowSymLinks
RewriteEngine On
RewriteRule ^submit/?$ submit.php [NC,L]
/etc/apache2/sites-available/applicapple:
<VirtualHost *:80>
ServerAdmin support@perpetualcontrast.com
DocumentRoot /var/www/applicapple
ServerName applicapple.localhost
<Directory /var/www/applicapple/>
Options Indexes FollowSymLinks MultiViews
RewriteEngine On
AllowOverride All
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
submit.php は確かに存在します。applicapple.localhost/submit にアクセスしている間:
ディレクトリに submit.php があると、The requested URL /submit was not found on this server.
submit.php を削除すると、The requested URL /submit.php was not found on this server.
localhost/applicapple にアクセスすると、期待どおりに動作します。
誰かがここで何が起こっているのかを教えてくれますか?