.htaccess将sitemap.xml重定向到文件夹/custm_sitemap.xml



我生成了一个站点地图xml文件。

因为我有多个指向同一目录的网站,所以我将http://domain.com/domain.com/custom_websites.xml

如何将http://domain.com/sitemap.xml重定向到http://domain.com/domain.com/custom_websites.xml

您可以在DOCUMENT_ROOT/.htaccess文件中使用以下代码:

RewriteEngine On
RewriteCond %{HTTP_HOST} ^(?:www.)?(domain1).com$ [NC]
RewriteRule ^sitemap.xml$ /%1.com/custom_websites.xml [L,NC,R=302]

最新更新