We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The archetype includes rewrites from shortened URLs to full URLs in https://github.com/adobe/aem-project-archetype/blob/develop/src/main/archetype/dispatcher.ams/src/conf.d/rewrites/__appId___rewrite.rules
RewriteCond %{REQUEST_URI} !^/apps RewriteCond %{REQUEST_URI} !^/bin RewriteCond %{REQUEST_URI} !^/content RewriteCond %{REQUEST_URI} !^/etc RewriteCond %{REQUEST_URI} !^/home RewriteCond %{REQUEST_URI} !^/libs RewriteCond %{REQUEST_URI} !^/saml_login RewriteCond %{REQUEST_URI} !^/system RewriteCond %{REQUEST_URI} !^/tmp RewriteCond %{REQUEST_URI} !^/var RewriteCond %{REQUEST_URI} (.html|.jpe?g|.png|.svg)$ RewriteRule ^/(.*)$ /content/${CONTENT_FOLDER_NAME}/$1 [PT,L]
Given these paths are all checked w/o a trailing / the following paths will not be rewritten to their full paths:
/
I believe all of these paths, with the exception of maybe /saml_login should be updated with a trailing /
/saml_login
The text was updated successfully, but these errors were encountered:
slight addendum - would need to leave /etc as-is or if changing to /etc/ then also add /etc.clientlibs
/etc
/etc/
/etc.clientlibs
Sorry, something went wrong.
No branches or pull requests
The archetype includes rewrites from shortened URLs to full URLs in https://github.com/adobe/aem-project-archetype/blob/develop/src/main/archetype/dispatcher.ams/src/conf.d/rewrites/__appId___rewrite.rules
Given these paths are all checked w/o a trailing
/
the following paths will not be rewritten to their full paths:etc...
I believe all of these paths, with the exception of maybe
/saml_login
should be updated with a trailing/
The text was updated successfully, but these errors were encountered: