in reply to Trailing slash problem with mod_perl
This is likely to be an Apache problem. You can probably fix it with a RewriteRule that simply adds a slash:
If there might be arguments after foo, adding something like this might work:RewriteEngine On RewriteRule ^/foo$ /foo/ [R]
RewriteRule ^/foo[^/](.*)$ /foo/$1 [R]
These aren't tested, but you get the idea.
|
|---|