Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

url-rewrite with confluence

Derek Page March 21, 2012

I am trying to perform a simple url rewrite however it seems everything I try does not do what I am expecting.

I am using UrlRewrite 2.5 plugin from tuckey.org
Basically I just want to redirect http://wiki/marketing to http://wiki/display/CORP/Marketing so my end users dont have to type the exra display/CORP.

Here is once example that I tried in my urlrewrite.xml file

<rule> 
<from>^/maketing$</from> <to type="redirect">/display/CORP/Marketing</to>
</rule>

3 answers

1 vote
Penny Wyatt (On Leave to July 2021)
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
March 22, 2012

The <from> value you have there is "maketing", it should be "marketing" (with an "r").

1 vote
Radu Dumitriu
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 21, 2012

mod_rewrite works for sure:

RewriteEngine on
RewriteRule ^/marketing$
/display/CORP/Marketing [R]

2 cents: I never tried this one, but I imagine that the order of the filters is important, so try to move your filter declaration as the first one (so that this is invoked first).

I also think that you should come with more info. What kind of problems do you have ? (what is happening ?)

Derek Page March 21, 2012

Thanks for you answer... I will give this a try.

Basically nothing happends as if the rule does not exist.

Radu Dumitriu
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 21, 2012

Have you tried to enable some debug on it ?

<init-param>
<param-name>logLevel</param-name>
<param-value>DEBUG</param-value>
</init-param>
Radu Dumitriu
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 22, 2012

well ? works ?

0 votes
Derek Page April 5, 2012

I was able to get this working by upgrading to conf 4.1 and installing a redirect plugin.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events