php到xml的正确rewriterule参数

时间:2012-03-06 15:52:42

标签: mod-rewrite

从php到xml使用的正确重写规则是什么。

样品:

podcast.php - podcasts.xml  
ringtones.php - ringtones.xml  
and so on...

我目前在我的.htaccess上有这个

RewriteEngine on
RewriteRule ^podcasts.xml$ podcasts.php [L]

1 个答案:

答案 0 :(得分:1)

RewriteEngine on
RewriteBase   /
RewriteRule   ^(.*?)\.xml$      $1.php [L]

但这将取代所有.xml请求。