Skip to main content

We have a requirement to customize the tableau server dashboard URL.

For example: Default URL of the tableau dashboard is "<servername>/#views/<dashaboardname>?:iid=1", We want to customize URL like this "<servername>/<dashboardname>".

I have found following code to do URL re-writing. Below is the code for the same.

# turn on the rewrite engine (module loaded above) #TABLEAU CODE

RewriteEngine on

...

 

⌗Rewrite the URL so that the server name does not appear #MY CODE

RewriteCond %{HTTP_HOST} !^(.*)[server name]\.[domain]\.com [NC]

RewriteCond %{HTTP_HOST} !^$

RewriteRule ^/(.*) name].[domain].com/$1 [R,L]

 

Can anyone please explain this ?

 

Thanks

Nutan Patel

10 个回答
  1. 2016年1月8日 13:22

    yes, we created a .Net application as the best viable alternative.  without it, I don't know that there's any other workaround, but if you find one, let us know.

0/9000