.htaccess删除.php扩展名会破坏xml文件

时间:2015-04-26 09:35:36

标签: php xml .htaccess sitemap google-webmaster-tools

我正在使用以下htaccess从网址中删除.php.html扩展名:

Options -MultiViews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ $1.php [NC,L]

我有一个名为sitemap.xml的文件,用于网站的站点地图。当我尝试通过Google Webmaster Tools向Google提交站点地图时,我认为它将sitemap.xml文件视为php文件并引发以下错误:

Parse error: syntax error, unexpected 'version' (T_STRING) in /home/eliteche/public_html/sitemap.xml on line 1

任何人都可以帮我解决这个问题吗?谢谢。

0 个答案:

没有答案