.htaccess如何在子文件夹中打开文件?

时间:2015-04-01 06:29:22

标签: apache .htaccess

我有许多位于子目录中的动态子域的站点地图文件:

  • /sitemap/town1.xml for town1.mysite.com
  • /sitemap/town2.xml for town2.mysite.com

如何配置.htaccess,该请求将打开文件/sitemap/town1.xml

1 个答案:

答案 0 :(得分:0)

毕竟,我来到了这个解决方案:

RewriteCond %{REQUEST_URI} ^/sitemap.xml$
RewriteCond %{HTTP_HOST} ^(.*)\.site\.com
RewriteRule ^(.*)$ http://%1.site.com/sitemap/%1.xml [L,NC,P]