我使用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]
答案 0 :(得分:1)
你可以尝试一下。
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^sitemap\.xml$ /index.php?option=com_xmap&view=xml&tmpl=component&id=1 [L]