简体   繁体   中英

How to Redirect file to another path

I am trying to redirect https://example.com/sitemap.xml to https://example.com/sites/default/files/sitemap/sitemap.xml

How can I do so? I tried following rule but it is not working

RewriteRule ^(.*)\.xml$ /sites/default/files/sitemap/$1 [NC L]

Works for me! RewriteRule ^([^/]+.xml)$ sites/default/files/sitemap/$1 [NC,L]

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM