0
我有位於子目錄動態子域許多網站地圖文件:.htaccess如何打開子文件夾中的文件?
- /sitemap/town1.xml爲town1.mysite.com
- /sitemap/town2.xml爲town2.mysite.com
我該如何配置.htaccess,該請求會打開文件/sitemap/town1.xml?
我有位於子目錄動態子域許多網站地圖文件:.htaccess如何打開子文件夾中的文件?
我該如何配置.htaccess,該請求會打開文件/sitemap/town1.xml?
畢竟,我來到這個解決方案:
RewriteCond %{REQUEST_URI} ^/sitemap.xml$
RewriteCond %{HTTP_HOST} ^(.*)\.site\.com
RewriteRule ^(.*)$ http://%1.site.com/sitemap/%1.xml [L,NC,P]