如何从URL访问子域文件?

时间:2014-04-02 05:01:54

标签: php wordpress .htaccess subdomain sitemap

我在http://zend.patidarweb.com/

上安装了wordpress

我在http://zend.patidarweb.com/sitemap_index.xml

上有一个站点地图

我希望从http://patidarweb.com/zend/sitemap_index.xml

访问

我必须在.htaccess中添加什么才能解决问题?

提前感谢所有用户。

1 个答案:

答案 0 :(得分:1)

您可以在.htaccess文件中使用简单重定向,例如

RewriteCond %{REQUEST_URI} ^/zend/sitemap_index.xml [NC]
RewriteRule ^(.*)$ http://zend.patidarweb.com/sitemap_index.xml [R=301,L]

或者您需要使用代理,以避免重定向&仅获取内容