<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Use DNS and SAS Apache to redirect a simple URL to the long VA Hub in Administration and Deployment</title>
    <link>https://communities.sas.com/t5/Administration-and-Deployment/Use-DNS-and-SAS-Apache-to-redirect-a-simple-URL-to-the-long-VA/m-p/466080#M13274</link>
    <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/85807"&gt;@D_e_n_n_i_s&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;yours is a very good and common question. You are looking for rewrite/redirect URLs.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here a few pinpoints:&lt;/P&gt;
&lt;P&gt;- .htaccess : first, enable to look hidden and system files. Second, probably by default it is not there, but you can actually create one for your purposes.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;- Did you check&amp;nbsp;&lt;A href="https://httpd.apache.org/docs/2.4/rewrite/remapping.html" target="_blank"&gt;https://httpd.apache.org/docs/2.4/rewrite/remapping.html&lt;/A&gt;? This is my best friend for this requirement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;-&amp;nbsp;&lt;SPAN&gt;\Lev1\Web\WebServer\conf\httpd.conf is indeed a good place, you can check also&amp;nbsp;\Lev1\Web\WebServer\conf\sas.conf&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;- When you make the change, indeed, you need to restart httpd/Apache&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;- just in case, you probably should white-list&amp;nbsp;the alias in SAS Web Infrastructure Platform (in SAS Management Console), since it can be considered&amp;nbsp;as cross-domain&amp;nbsp;attack/referral.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Does it help you on any way?&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 30 May 2018 15:10:46 GMT</pubDate>
    <dc:creator>JuanS_OCS</dc:creator>
    <dc:date>2018-05-30T15:10:46Z</dc:date>
    <item>
      <title>Use DNS and SAS Apache to redirect a simple URL to the long VA Hub</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Use-DNS-and-SAS-Apache-to-redirect-a-simple-URL-to-the-long-VA/m-p/466034#M13268</link>
      <description>&lt;P&gt;We have a Visual Analytics non-distributed server and the VA URL is difficult for users to remember if they are on conference room computers or some other machine besides where they have a convenient shortcut to it.&amp;nbsp; I'm not trying to hide any URL info, but want to redirect a simple URL entry to the long VA URL.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Not sure of exactly how to accomplish this, we first added a DNS CName&amp;nbsp;record for sas.brookshealth.local that resolves to cxpvwappsasva01.brookshealth.local (brookshealth.local is our domain).&amp;nbsp; I now need to configure&amp;nbsp;our Apache&amp;nbsp;server&amp;nbsp;to&amp;nbsp;perform a URL rewrite for the URN portion of the URL since DNS cannot do that.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am not familiar with Apache, but doing some research and then searching our SAS VA server for matching Apache configuration files, I thought I had found the main config file, named httpd.conf.vm&amp;nbsp;at:&lt;/P&gt;&lt;P&gt;\\cxpvwappsasva01\e$\SAS\Config\Lev1\Web\Scripts\AppServer\src\Velocity\vfabrcersvrc\httpd.conf.vm&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I wanted to redirect both the VA URL and a web page we created on&amp;nbsp;our internal SharePoint site so&amp;nbsp;to the bottom of this&amp;nbsp;file I added:&lt;/P&gt;&lt;P&gt;Redirect permanent "/sas" &lt;A href="http://cxpvwappsasva01.brookshealth.local:7980/SASVisualAnalyticsHub/" target="_blank" rel="nofollow noopener noreferrer"&gt;&lt;FONT color="#007dc3"&gt;http://cxpvwappsasva01.brookshealth.local:7980/SASVisualAnalyticsHub/&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Redirect permanent "/LearnSAS" http://ebrooks/teams/DataScience/SitePages/SASVideos.aspx&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Well, in searching for the path above for this post, I actually found a different file that may be the REAL SAS Apache config file:&lt;/P&gt;&lt;P&gt;\\cxpvwappsasva01\e$\SAS\Config\Lev1\Web\WebServer\conf\httpd.conf&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'll stop services and re-try my code (will notify users of VA downtime), but I wanted to share what I had found and see if anyone knows if my syntax is simply wrong or if I&amp;nbsp;edited the wrong file.&amp;nbsp; I'm also a bit concerned with using the "Redirect" Apache directive as it seems to be for domain redirection, changing the path before the trailing URL, but leaving the trailing URL "allowing" you to redirect&lt;/P&gt;&lt;P&gt;domain1\coolwebpage to domain2\coolwebpage ... I'm not trying to do that, but instead just trying to redirect one web page to another so perhaps there is a better way to perform this simpler task.&amp;nbsp; I couldn't locate the .htaccess&amp;nbsp;file on the VA server, but with my new match on the httpd.conf file just now, I'll try searching for it again.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for any and all thoughts and feedback.&amp;nbsp; This is unsupported by SAS, but I don't think I'm getting too far out there with a simple URL redirection with a couple of lines of code change to an Apache configuration file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Dennis&lt;/P&gt;</description>
      <pubDate>Wed, 30 May 2018 14:17:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Use-DNS-and-SAS-Apache-to-redirect-a-simple-URL-to-the-long-VA/m-p/466034#M13268</guid>
      <dc:creator>D_e_n_n_i_s</dc:creator>
      <dc:date>2018-05-30T14:17:46Z</dc:date>
    </item>
    <item>
      <title>Re: Use DNS and SAS Apache to redirect a simple URL to the long VA Hub</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Use-DNS-and-SAS-Apache-to-redirect-a-simple-URL-to-the-long-VA/m-p/466040#M13269</link>
      <description>&lt;P&gt;For the record, I didn't find the SAS flavor of the .htaccess file ...&lt;/P&gt;</description>
      <pubDate>Wed, 30 May 2018 14:24:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Use-DNS-and-SAS-Apache-to-redirect-a-simple-URL-to-the-long-VA/m-p/466040#M13269</guid>
      <dc:creator>D_e_n_n_i_s</dc:creator>
      <dc:date>2018-05-30T14:24:17Z</dc:date>
    </item>
    <item>
      <title>Re: Use DNS and SAS Apache to redirect a simple URL to the long VA Hub</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Use-DNS-and-SAS-Apache-to-redirect-a-simple-URL-to-the-long-VA/m-p/466080#M13274</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/85807"&gt;@D_e_n_n_i_s&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;yours is a very good and common question. You are looking for rewrite/redirect URLs.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here a few pinpoints:&lt;/P&gt;
&lt;P&gt;- .htaccess : first, enable to look hidden and system files. Second, probably by default it is not there, but you can actually create one for your purposes.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;- Did you check&amp;nbsp;&lt;A href="https://httpd.apache.org/docs/2.4/rewrite/remapping.html" target="_blank"&gt;https://httpd.apache.org/docs/2.4/rewrite/remapping.html&lt;/A&gt;? This is my best friend for this requirement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;-&amp;nbsp;&lt;SPAN&gt;\Lev1\Web\WebServer\conf\httpd.conf is indeed a good place, you can check also&amp;nbsp;\Lev1\Web\WebServer\conf\sas.conf&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;- When you make the change, indeed, you need to restart httpd/Apache&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;- just in case, you probably should white-list&amp;nbsp;the alias in SAS Web Infrastructure Platform (in SAS Management Console), since it can be considered&amp;nbsp;as cross-domain&amp;nbsp;attack/referral.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Does it help you on any way?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 30 May 2018 15:10:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Use-DNS-and-SAS-Apache-to-redirect-a-simple-URL-to-the-long-VA/m-p/466080#M13274</guid>
      <dc:creator>JuanS_OCS</dc:creator>
      <dc:date>2018-05-30T15:10:46Z</dc:date>
    </item>
    <item>
      <title>Re: Use DNS and SAS Apache to redirect a simple URL to the long VA Hub</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Use-DNS-and-SAS-Apache-to-redirect-a-simple-URL-to-the-long-VA/m-p/466099#M13276</link>
      <description>&lt;P&gt;Hi &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/35204"&gt;@JuanS_OCS&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Wow, there's some serious help in your post so thanks for the amazing response..&amp;nbsp; I had looked through the Apache open source help pages, but did not see the very helpful link you noted.&amp;nbsp; Since I want the users to see the redirected URL (VA Hub), I'll try using the format:&lt;BR /&gt;RewriteEngine&amp;nbsp; on&lt;BR /&gt;RewriteRule&amp;nbsp;&amp;nbsp;&amp;nbsp; "^/foo\.html$"&amp;nbsp; "bar.html"&amp;nbsp; [R]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm thinking we don't even need a DNS entry and can simply redirect any URL to another through this mechanism.&amp;nbsp; So, if I wanted users to be able to type "sas" in their browser and have it redirect to our VA URL, I'm thinking the syntax would be:&lt;BR /&gt;RewriteEngine&amp;nbsp; on&lt;BR /&gt;RewriteRule&amp;nbsp;"^/sas\.brookshealth.local" &lt;A href="http://cxpvwappsasva01.brookshealth.local:7980/SASVisualAnalyticsHub/" target="_blank"&gt;http://cxpvwappsasva01.brookshealth.local:7980/SASVisualAnalyticsHub/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;and users would need to enter http://sas/ into their browser since just typing "sas" would trigger a browser search reply unless there was a DNS entry to map "sas" to &lt;A href="http://sas.brookshealth.local" target="_blank"&gt;http://sas.brookshealth.local&lt;/A&gt; ... Without a DNS entry, I guess they would have to type &lt;A href="http://sas.brookshealth.local" target="_blank"&gt;http://sas.brookshealth.local&lt;/A&gt; - Does any of this sound close?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the tip too on the SAS files.&amp;nbsp; I'm going to take down the server today and I'll test modifying both the httpd.conf and the sas.conf that you reference and we'll see what happens.&amp;nbsp; I just want to try to get the syntax right before I do that.&amp;nbsp; I found that I have to stop the services to edit the file so I will definitely be bouncing the SAS services.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Great idea to whitelist the alias.&amp;nbsp; We had put links from SharePoint to SAS and they didn't work until I discovered that I had to whitelist our SharePoint site within the SAS Mgmt Console before SAS would allow the traffic from SharePoint.&amp;nbsp; It makes sense that this could be blocking the redirection as well - I hadn't even thought of this ... Thanks !!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This was a huge help and I appreciate any corrections to my thoughts on how to implement this.&amp;nbsp; Thanks again !!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;BR /&gt;Dennis&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 May 2018 15:44:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Use-DNS-and-SAS-Apache-to-redirect-a-simple-URL-to-the-long-VA/m-p/466099#M13276</guid>
      <dc:creator>D_e_n_n_i_s</dc:creator>
      <dc:date>2018-05-30T15:44:31Z</dc:date>
    </item>
    <item>
      <title>Re: Use DNS and SAS Apache to redirect a simple URL to the long VA Hub</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Use-DNS-and-SAS-Apache-to-redirect-a-simple-URL-to-the-long-VA/m-p/466458#M13283</link>
      <description>&lt;P&gt;If I add the following lines of code to the bottom of both configuration files&lt;BR /&gt;(\Lev1\Web\WebServer\conf\sas.conf and \\cxpvwappsasva01\e$\SAS\Config\Lev1\Web\WebServer\conf\httpd.conf) and perhaps \\cxpvwappsasva01\e$\SAS\Config\Lev1\Web\Scripts\AppServer\src\Velocity\vfabrcersvrc\httpd.conf.vm too just to test ... if users enter "&lt;A href="http://sas.brookshealth.local" target="_blank"&gt;http://sas.brookshealth.local&lt;/A&gt;" would it redirect them to our VA Hub URL (&lt;A href="http://cxpvwappsasva01.brookshealth.local:7980/SASVisualAnalyticsHub/" target="_blank"&gt;http://cxpvwappsasva01.brookshealth.local:7980/SASVisualAnalyticsHub/&lt;/A&gt;&lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;RewriteEngine&amp;nbsp; on&lt;BR /&gt;RewriteRule "^/sas\.brookshealth.local" &lt;A href="http://cxpvwappsasva01.brookshealth.local:7980/SASVisualAnalyticsHub/" target="_blank"&gt;http://cxpvwappsasva01.brookshealth.local:7980/SASVisualAnalyticsHub/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would I whitelist &lt;A href="http://sas.brookshealth.local" target="_blank"&gt;http://sas.brookshealth.local&lt;/A&gt; (rather than our VA Hub URL)?&amp;nbsp; If I have the DNS CName record modified to point "sas" to "&lt;A href="http://sas.brookshealth.local" target="_blank"&gt;http://sas.brookshealth.local&lt;/A&gt;" and then implement the code above, should users be able to type "sas" into their browser and get to the VA Hub URL?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was just able to confirm that we will be spinnning up 2 Dev servers in 7-10 days so I can wait until then to perform the testing, but I'm anxious to try it out and report my results back here so that everyone can know how to make this happen since the VA Hub URL is long and difficult for users to remember.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;BR /&gt;Dennis&lt;/P&gt;</description>
      <pubDate>Thu, 31 May 2018 14:09:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Use-DNS-and-SAS-Apache-to-redirect-a-simple-URL-to-the-long-VA/m-p/466458#M13283</guid>
      <dc:creator>D_e_n_n_i_s</dc:creator>
      <dc:date>2018-05-31T14:09:41Z</dc:date>
    </item>
    <item>
      <title>Re: Use DNS and SAS Apache to redirect a simple URL to the long VA Hub</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Use-DNS-and-SAS-Apache-to-redirect-a-simple-URL-to-the-long-VA/m-p/466647#M13288</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Recap:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;We added a CNAME record for sas.brookshealth.local that resolves to cxpvwappsasva01.brookshealth.local&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I found a doc from our first consultant team for setting up SSL, which we didn't do since we only access SAS internally, but it noted configuration files to change with only one that wasn't directly in reference to SSL:&lt;BR /&gt;E:\SAS\Config\Lev1\Web\WebServer\conf\httpd.conf&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is the same as the file I located earier (FQDN):&lt;BR /&gt;\\cxpvwappsasva01\e$\SAS\Config\Lev1\Web\WebServer\conf\httpd.conf&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't know if I need to edit the virtual machine file so I'll edit it to try to get this going and will eliminate it later:&lt;BR /&gt;\\cxpvwappsasva01\e$\SAS\Config\Lev1\Web\Scripts\AppServer\src\Velocity\vfabrcersvrc\httpd.conf.vm&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I white-listed: &lt;A href="http://sas.brookshealth.local/" target="_blank"&gt;http://sas.brookshealth.local/&lt;/A&gt;&lt;BR /&gt;This was done in SAS Mgmt Console.&amp;nbsp; For everyone's benefit, navigate to Application Management --&amp;gt; Configuration Manager --&amp;gt; Right-click SAS Application Infrastructure and select Properties --&amp;gt; Edit the sas.web.csrf.referers.knownHosts property&lt;BR /&gt;Note: Make sure to add a "/" character at the end of the URL being whitelisted.&amp;nbsp; For multiple URL's, separate them with a comma.&amp;nbsp; Restart your SAS Web Application Servers for changes to take effect.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Since I'm still unsure about the code to use, I'll add the following to the two files in the &amp;lt;IfModule alias_module&amp;gt; section:&lt;BR /&gt;Redirect permanent "&lt;A href="http://sas.brookshealth.local/" target="_blank"&gt;http://sas.brookshealth.local/&lt;/A&gt;" &lt;A href="http://cxpvwappsasva01.brookshealth.local:7980/SASVisualAnalyticsHub/" target="_blank"&gt;http://cxpvwappsasva01.brookshealth.local:7980/SASVisualAnalyticsHub/&lt;/A&gt;&lt;BR /&gt;Redirect permanent "&lt;A href="http://learnsas.brookshealth.local/" target="_blank"&gt;http://learnsas.brookshealth.local/&lt;/A&gt;" http://ebrooks/teams/DataScience/SitePages/SASVideos.aspx&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'll need to get another DNS CName record added to map "learnsas" to &lt;A href="http://learnsas.brookshealth.local" target="_blank"&gt;http://learnsas.brookshealth.local&lt;/A&gt; before that redirection will work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I stopped all VA services (after notifying users to coordinate downtime), edited both files and rebooted the VA server.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Result:&lt;/STRONG&gt; After making sure that I get the VA Hub login (VA is back up), I get a "Can't Reach This Page" error in a browser when using &lt;A href="http://sas.brookshealth.local" target="_blank"&gt;http://sas.brookshealth.local&lt;/A&gt; or &lt;A href="http://learnsas.brookshealth.local" target="_blank"&gt;http://learnsas.brookshealth.local&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I stopped all SAS services again and replaced the above code in both files with:&lt;BR /&gt;RewriteEngine&amp;nbsp; on&lt;BR /&gt;RewriteRule "^/sas\.brookshealth.local" &lt;A href="http://cxpvwappsasva01.brookshealth.local:7980/SASVisualAnalyticsHub" target="_blank"&gt;http://cxpvwappsasva01.brookshealth.local:7980/SASVisualAnalyticsHub&lt;/A&gt;&lt;BR /&gt;RewriteRule "^/learnsas\.brookshealth.local" http://ebrooks/teams/DataScience/SitePages/SASVideos.aspx&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then, rebooted the VA server.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FInal Result:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Using Internet Explorer:&lt;/P&gt;&lt;P&gt;For &lt;A href="http://sas.brookshealth.local/" target="_blank"&gt;http://sas.brookshealth.local/&lt;/A&gt; I again get the same error, but I grabbed the details this time, which are:&lt;BR /&gt;There was a temporary DNS error. Try refreshing the page.&lt;BR /&gt;Error Code: INET_E_RESOURCE_NOT_FOUND&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For &lt;A href="http://learnsas.brookshealth.local/" target="_blank"&gt;http://learnsas.brookshealth.local/&lt;/A&gt;, I get the same error, but details are:&lt;BR /&gt;The DNS name does not exist.&lt;BR /&gt;Error Code: INET_E_RESOURCE_NOT_FOUND&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Using Chrome:&lt;/P&gt;&lt;P&gt;For &lt;A href="http://sas.brookshealth.org" target="_blank"&gt;http://sas.brookshealth.org&lt;/A&gt;, I get:&lt;BR /&gt;This site can't be reached&lt;BR /&gt;sas.brookshealth.local refused to connect&lt;BR /&gt;ERR_CONNECTION_REFUSED&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For &lt;A href="http://learnsas.brookshealth.org" target="_blank"&gt;http://learnsas.brookshealth.org&lt;/A&gt;, I get&lt;BR /&gt;This site can't be reached&lt;BR /&gt;learnsas.brookshealth.local’s server IP address could not be found.&lt;BR /&gt;ERR_NAME_NOT_RESOLVED&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 31 May 2018 21:50:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Use-DNS-and-SAS-Apache-to-redirect-a-simple-URL-to-the-long-VA/m-p/466647#M13288</guid>
      <dc:creator>D_e_n_n_i_s</dc:creator>
      <dc:date>2018-05-31T21:50:35Z</dc:date>
    </item>
    <item>
      <title>Re: Use DNS and SAS Apache to redirect a simple URL to the long VA Hub</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Use-DNS-and-SAS-Apache-to-redirect-a-simple-URL-to-the-long-VA/m-p/466676#M13289</link>
      <description>&lt;P&gt;Realizing that the CName record was redirecting the sas.brookshealth.local URL, I tried the following:&lt;/P&gt;&lt;P&gt;Redirect permanent "cxpvwappsasva01.brookshealth.local/" &lt;A href="http://cxpvwappsasva01.brookshealth.local:7980/SASVisualAnalyticsHub/" target="_blank"&gt;http://cxpvwappsasva01.brookshealth.local:7980/SASVisualAnalyticsHub/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also tried&lt;/P&gt;&lt;P&gt;RewriteEngine&amp;nbsp; on&lt;BR /&gt;RewriteRule "cxpvwappsasva01.brookshealth.local" &lt;A href="http://cxpvwappsasva01.brookshealth.local:7980/SASVisualAnalyticsHub" target="_blank"&gt;http://cxpvwappsasva01.brookshealth.local:7980/SASVisualAnalyticsHub&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I get the same results&lt;/P&gt;</description>
      <pubDate>Thu, 31 May 2018 23:22:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Use-DNS-and-SAS-Apache-to-redirect-a-simple-URL-to-the-long-VA/m-p/466676#M13289</guid>
      <dc:creator>D_e_n_n_i_s</dc:creator>
      <dc:date>2018-05-31T23:22:00Z</dc:date>
    </item>
    <item>
      <title>Re: Use DNS and SAS Apache to redirect a simple URL to the long VA Hub</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Use-DNS-and-SAS-Apache-to-redirect-a-simple-URL-to-the-long-VA/m-p/466758#M13290</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/85807"&gt;@D_e_n_n_i_s&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;too bad.&amp;nbsp;Your tests make me think that perhaps your aliases are not resolving to the same IP address as the original URL? Ir even changing from IPv4 to IPv6 or the other way around?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You could try to do simple pings and telnet to the appropriate port.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, probably you would need to register the alias/es in apache, in the "Listen"&amp;nbsp; line, and perhaps even new VirtualHosts - or change the VirtualHost definitions to listen on * aliases-. (specially for that CONNECTION_REFUSED error, since firewall would not be the problem here, meaning that then the only one who refuses, is Apache - the SAS Web Server)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Another couple of good friends, that are under my arm me since my times of J2EE developer:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://httpd.apache.org/docs/2.4/vhosts/name-based.html" target="_blank"&gt;https://httpd.apache.org/docs/2.4/vhosts/name-based.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://httpd.apache.org/docs/2.4/vhosts/examples.html" target="_blank"&gt;https://httpd.apache.org/docs/2.4/vhosts/examples.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Jun 2018 07:25:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Use-DNS-and-SAS-Apache-to-redirect-a-simple-URL-to-the-long-VA/m-p/466758#M13290</guid>
      <dc:creator>JuanS_OCS</dc:creator>
      <dc:date>2018-06-01T07:25:52Z</dc:date>
    </item>
    <item>
      <title>Re: Use DNS and SAS Apache to redirect a simple URL to the long VA Hub</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Use-DNS-and-SAS-Apache-to-redirect-a-simple-URL-to-the-long-VA/m-p/466826#M13295</link>
      <description>&lt;P&gt;Guess I need to learn more about Apache ... sigh&lt;/P&gt;&lt;P&gt;J2EE Developer - You must feel right at home with SAS since it uses Java to accomplish much of what it does.&lt;/P&gt;&lt;P&gt;Thanks for sharing your friends with us - I'll do some more research on the subject.&amp;nbsp; Thanks for all your replies - Greatly appreciated !!&lt;/P&gt;</description>
      <pubDate>Fri, 01 Jun 2018 13:28:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Use-DNS-and-SAS-Apache-to-redirect-a-simple-URL-to-the-long-VA/m-p/466826#M13295</guid>
      <dc:creator>D_e_n_n_i_s</dc:creator>
      <dc:date>2018-06-01T13:28:05Z</dc:date>
    </item>
    <item>
      <title>Re: Use DNS and SAS Apache to redirect a simple URL to the long VA Hub</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Use-DNS-and-SAS-Apache-to-redirect-a-simple-URL-to-the-long-VA/m-p/466831#M13296</link>
      <description>&lt;P&gt;General knowledge of Java or Apache definitely helps, but no need to be a programmer on it, I actually forgot a lot of stuff and I am not in the Java wave anymore - not by far, rusty&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But perhaps a general web developer from your company can support you as well, since there is a clear common ground there!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Good luck, keep us posted, at least I would like to have your issue fixed soon. Pity that I cannot be there with you &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Jun 2018 13:35:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Use-DNS-and-SAS-Apache-to-redirect-a-simple-URL-to-the-long-VA/m-p/466831#M13296</guid>
      <dc:creator>JuanS_OCS</dc:creator>
      <dc:date>2018-06-01T13:35:53Z</dc:date>
    </item>
    <item>
      <title>Re: Use DNS and SAS Apache to redirect a simple URL to the long VA Hub</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Use-DNS-and-SAS-Apache-to-redirect-a-simple-URL-to-the-long-VA/m-p/467678#M13324</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/35204"&gt;@JuanS_OCS&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;Also, probably you would need to register the alias/es in apache, in the "Listen"&amp;nbsp; line, and perhaps even new VirtualHosts - or change the VirtualHost definitions to listen on * aliases-. (specially for that CONNECTION_REFUSED error, since firewall would not be the problem here, meaning that then the only one who refuses, is Apache - the SAS Web Server)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Another couple of good friends, that are under my arm me since my times of J2EE developer:&lt;/P&gt;&lt;P&gt;&lt;A href="https://httpd.apache.org/docs/2.4/vhosts/name-based.html" target="_blank"&gt;https://httpd.apache.org/docs/2.4/vhosts/name-based.html&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://httpd.apache.org/docs/2.4/vhosts/examples.html" target="_blank"&gt;https://httpd.apache.org/docs/2.4/vhosts/examples.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Thanks for the tips - I'll have to research how to set up machine-name host settings and get everything registered properly.&amp;nbsp; We should have the Dev servers stood up soon so that I don't have to take down our organization while trying to get this right.&amp;nbsp; I'll keep you posted on my progress, but more research is required.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Dennis&lt;/P&gt;</description>
      <pubDate>Tue, 05 Jun 2018 14:37:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Use-DNS-and-SAS-Apache-to-redirect-a-simple-URL-to-the-long-VA/m-p/467678#M13324</guid>
      <dc:creator>D_e_n_n_i_s</dc:creator>
      <dc:date>2018-06-05T14:37:14Z</dc:date>
    </item>
  </channel>
</rss>

