RewriteCond不能很好地工作

时间:2015-12-23 11:45:39

标签: .htaccess mod-rewrite url-rewriting rewrite

我使用Joomla Joomla! 3.4.4以及XMAP组件2.3.3
现在我想在网址为:

时重写网址
  

/index.php?option=com_xmap&view=xml&tmpl=component&id=1

重写

  

/sitemap.xml

这是我在htacces文件中编写的代码,我不知道为什么不起作用

RewriteCond %{REQUEST_URI} ^/sitemap.xml
RewriteRule .* /index.php?option=com_xmap&view=xml&tmpl=component&id=1 [L]

1 个答案:

答案 0 :(得分:1)

你可以尝试一下。

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^sitemap\.xml$ /index.php?option=com_xmap&view=xml&tmpl=component&id=1 [L]