Bug 50134 - Implement a default Redirect for Apps to have a trailing slash
Implement a default Redirect for Apps to have a trailing slash
Status: NEW
Product: UCS
Classification: Unclassified
Component: Apache
UCS 4.4
Other Linux
: P5 normal (vote)
: ---
Assigned To: UMC maintainers
UMC maintainers
https://help.univention.com/t/q-a-can...
:
Depends on:
Blocks:
  Show dependency treegraph
 
Reported: 2019-09-09 12:07 CEST by Christian Völker
Modified: 2019-09-09 12:07 CEST (History)
0 users

See Also:
What kind of report is it?: Bug Report
What type of bug is this?: 2: Improvement: Would be a product improvement
Who will be affected by this bug?: 2: Will only affect a few installed domains
How will those affected feel about the bug?: 2: A Pain – users won’t like this once they notice it
User Pain: 0.046
Enterprise Customer affected?: Yes
School Customer affected?:
ISV affected?:
Waiting Support:
Flags outvoted (downgraded) after PO Review:
Ticket number: 2019090921000367
Bug group (optional): Design
Max CVSS v3 score:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Christian Völker univentionstaff 2019-09-09 12:07:25 CEST
Frequently we have support requests because a redirect to "/$app" but the app requires an URL with trailing slash ("/$app/").

As resolution we usually recommend the tip from the forum (See URL):
==================================
Add a file to Apache, e.g. /etc/apache2/conf-available/app-fix.conf , with the following content:

RedirectMatch ^/app$ /app/

Enable the configuration:

a2enconf app-fix
systemctl reload apache2
==================================

Could we implement such a feature with all apps so customers do not get confused?