ASC redirect is not remembering text after the /
We need to see if there is a solution where the redirect from asc to artsandsciences can remember what is after the /.
http://asc.osu.edu/news-events
Comments:
- Added the following to .htaccess and committed to DEV. Need to alert DP because I cannot access httpd.conf or any of the server config files/dirs where the url alias would be happening for the VirtualHost directive. Something similar to the RewriteRule below needs to happen, thereby capturing anything that might follow domain in URL.
RewriteCond %{HTTP_HOST} ^(.)?asc.osu.edu$ [NC] RewriteRule ^(.)$ http://artsandsciences.osu.edu/%{REQUEST_URI} [L,R=302] (Sean Quigley - Feb 17, 2017)
- DP made changes to config, but there are other potential problems that may arise from this fix, particularly when the request is coming from opposite direction. (Sean Quigley - Feb 17, 2017)