I’m thinking this is a good opportunity for one or more of our sub-projects to
spread the love. I could write one on behalf of fortress that’d be published
on project website. Any other takers?
—Shawn
> Begin forwarded message:
>
> From: Sally Khudairi
> Subject: PMCs: share your Project's
Rich Bowen wrote:
> I suspect that you could do this with a combination of:
>
> * mod_rewrite RewriteRule [P] (proxy) rules [...]
> * mod_substitute, or mod_proxy_html rules to munge the content [...]
I did spend some time playing around with that sort of magic and managed to get
some parts of J
There's two possible approaches that come to mind
I suspect that you could do this with a combination of:
* mod_rewrite RewriteRule [P] (proxy) rules
RewriteRule ^/issue[^A-Za-z0-9]?(\d+)$
https://issues.apache.org/jira/browse/SVN-$1 [P,L]
ProxyPassReverse /issue https://issues.apache.org/ji
In Apache Subversion's .htaccess we have this RedirectMatch rule:
RedirectMatch ^/issue[^A-Za-z0-9]?(\d+)$
https://issues.apache.org/jira/browse/SVN-$1
It redirects a URL like
https://subversion.apache.org/issue/4567
to
https://issues.apache.org/jira/browse/SVN-4567
Why? Human-friendly, tec