标签: .htaccess mod-rewrite
我的网站上有一个名为map-xml.php的页面,它是住房属性的RSS源。为了使我能够将其提交到Google的数据Feed,它需要有.xml个文件扩展名。
map-xml.php
.xml
那么我将如何在htaccess中编写重写规则,使map-xml.xml工作?
map-xml.xml
谢谢!
答案 0 :(得分:1)
RewriteRule ^(。*)/ map-xml.xml $ /$1/map-xml.php [L]
应该做的伎俩。