Hi ,
We would like to install LUCIDCHART diagram connector however clicking install pops up these details among which delete data from host applicaition. Will that delete existing data on install. Please advise. Thanks,
Thanks for the reply Renato. However my server is Apache-Tomcat and not just Apache. My understanding is that Apache-Tomcat will ingore .htacess files.
Also your above example only rewrites the current article "Knowledge Base Home". Is there a way to automatically rewrite all articles when posted instead of manually having to rewrite them?
Tomcat doesn't really support any form of rewrites, so Renato is effectively suggesting that you place Apache in front of your Confluence to do it. Also, Confluence does not support these rewrites - you're going to have a lot of "fun" trying to persuade them to work smoothly.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, Nic is right and sorry if I wasn't clear about using an Apache in front of Confluence :).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Matt,
You are right, you can do it using mod_rewrite.
I believe the code below will help to do what do you want. Just remember to enable the mod_rewrite on your Apache. After, create a .htaccess. on your root directory with this code:
RewriteEngine on
RewriteRule ^display/KB/Knowledge+Base+Home(/.*)?$ display/Knowledge+Base+Home/$1
Now, restart your apache and test it.
I hope it helps.
Regards
Renato Rudnicki
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.