Hi,
XML file(filename_in.xml) is there in dispatcher location "/mnt/var/www/html" and we are able to access that XML file via "http:www.domain.com/in/en/filename.xml".
We are achieving this because we have written a rule in dispatcher as below
RewriteRule ^/in/en/filename.xml /filename_in.xml [PT,L]
but now we wanted that XML file to be accessed via "http:www.domain.com/filename.xml", how do we achieve this.
Could you please help us writing the rule for the same.
Thanks in Advance.!
Solved! Go to Solution.
Views
Replies
Total Likes
You need to write something like
RewriteRule ^/filename.xml$ /content/dam/exampleco/filename_in.xml [NC,PT]
You need to write something like
RewriteRule ^/filename.xml$ /content/dam/exampleco/filename_in.xml [NC,PT]