.htaccess URL-re-write - (sitemap.xml zu sitemap.php)

unten ist meine aktuelle .htaccess-Datei. Ich möchte eine weitere Bedingung hinzufügen/Regel, wo, wenn eine Anforderung für sitemap.xml ist gemacht, sitemap.php serviert wird statt. Bitte helfen : )

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>
Schreibe einen Kommentar