いくつかの.htaccessチュートリアルを読みましたが、この簡単なタスクを理解できません。私は通常、すべてのリクエストをindex.phpにルーティングするサイトを持っています。しかし、index.phpに再ルーティングせずに単純に実行したい特定のファイル(upload_photo.php)が1つあります。以下は、すべてを台無しにするupload_photo.phpのエントリを含む私のhtacessファイルです。私は何が間違っているのですか?
# AddType x-mapp-php5 .php
# AddHandler x-mapp-php5 .php
RewriteEngine on
Options +FollowSymlinks
#Options +SymLinksIfOwnerMatch
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule upload_photo.php upload_photo.php [L]
RewriteRule . index.php [L]
ErrorDocument 404 /page-unavailable/
<files ~ "\.tpl$">
order deny,allow
allow from none
deny from all
</files>