[
Lists Home |
Date Index |
Thread Index
]
- From: Eric van der Vlist <vdv@dyomedea.com>
- To: Edd Dumbill <edd@usefulinc.com>
- Date: Thu, 14 Dec 2000 13:34:35 +0100
Edd Dumbill wrote:
>
> So my answer to this is, drop the ".xml" altogether, it's nicer. This
> is what I do with php scripts for example, just a simple Apache rewrite
> rule. Who wants to see suffixes everywhere?
For those of you who are interested, I have followed Edd's indications
off line and came up with a couple of rewrite rules for Apache that does
the trick quite safely (not rewriting anything if there is already an
extension and checking if the ".xml" file exists before adding the
extension):
=======
RewriteEngine on
RewriteRule \. - [L]
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_FILENAME}.xml -f
RewriteRule ^(.*) $1.xml [L]
=======
Hope this helps.
Eric
> -- Edd
--
------------------------------------------------------------------------
Eric van der Vlist Dyomedea http://dyomedea.com
http://xmlfr.org http://4xt.org http://ducotede.com
------------------------------------------------------------------------
|