从php到xml使用的正确重写规则是什么。
样品:
podcast.php - podcasts.xml
ringtones.php - ringtones.xml
and so on...
我目前在我的.htaccess上有这个
RewriteEngine on
RewriteRule ^podcasts.xml$ podcasts.php [L]
答案 0 :(得分:1)
RewriteEngine on
RewriteBase /
RewriteRule ^(.*?)\.xml$ $1.php [L]
但这将取代所有.xml请求。