Hallo,
after some reading I see that I could do the same job I am doing with mod_rewrite using AliasMatch.
Alias are working on my Apache 2.0 server, but when I try to use AliasMatch the url is not "filtered".
my working mod_rewrite:
RewriteRule /film/([0-9A-Za-z-_]*)(/?)$
/path/www.domain.com/file.php?code=$1
RewriteRule /new(/?)$ /path/www.domain.com/new.php
my non working AliasMatch:
AliasMatch /film/([0-9A-Za-z-_]*)(/?)$
/path/www.domain.com/file.php?code=$1 <-- not working
AliasMatch /new(/?)$ /path/www.domain.com/new.php <- This is working
Do you see something wrong in my syntax?
It is very strange that it is working on the "heavy" mod_rewrite and not on mod_alias.
Anybody could help?
Thanks