我已经阅读了一些 .htaccess 教程,但无法弄清楚这个简单的任务。我有一个通常将每个请求路由到 index.php 的站点。但是我有一个特定的文件(upload_photo.php),我希望它简单地执行而不重新路由到 index.php。下面是我的 htacess 文件,其中包含一个 upload_photo.php 条目,它搞砸了一切。我究竟做错了什么?
# 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>