以下は私の現在の .htaccess ファイルです。sitemap.xml のリクエストが行われた場合、代わりに sitemap.php が提供される別の条件/ルールを追加したいと思います。助けてください : )
Options +FollowSymLinks
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?filename=$1 [L,QSA]
</IfModule>