vote up 1 vote down star
1

How do I create a apache RewriteRule that catches any request URL ending in .xml, strips off the .xml and passes it to a specific script?

http://www.example.com/document.xml, becomes http://www.example.com/document passed to script.php
flag

1 Answer

vote up 1 vote down check

This should do the trick, I believe.

RewriteRule ^(.+)\.xml$ script.php?path=$1
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.