Hi, Dhiraj Gaur <[email protected]> wrote: > Pound.cfg: > Service "sr2enotesheet" > URL "^/sr2enotesheet\/*"
[...] > Service "sr2" > URL "^/sr2\/*" Shouldn't the URL-regex read something like "^/sr2enotesheet\/.*" and "^/sr2\/.*" instead of "^/sr2enotesheet\/*" and "^/sr2\/*" Usually ".*" means "no matter which character (.) and how many (*)". Your "/*" means "no matter how many /". Your regex would match "/sr2//////" but not "/sr2/abcde". Same for the other URL. Best regards, Fabian -- To unsubscribe send an email with subject unsubscribe to [email protected]. Please contact [email protected] for questions.
