We tried "PT" in rewrite rule, but still it not serving the page from dispatcher when there is no html extension.RewriteRule ^(/content/cms/pages/abc/[0-9]{4}/[0-9]{2}/[0-9]{1}/)(.*).html$ /$2 [R=301,PT,L]Since we are shortening the URL, we are using R. example - <domain>/content/cms/pages/abc/bdu21...
We tried "PT" in rewrite rule, but still it not serving the page from dispatcher when there is no html extension. RewriteRule ^(/content/cms/pages/abc/[0-9]{4}/[0-9]{2}/[0-9]{1}/)(.*).html$ /$2 [R=301,PT,L]Since we are shortening the URL, we are using R. example - <domain>/content/cms/pages/abc/bdu2...
Hi @Gaurav_Sachdeva_ , thanks for your reply.Could you please confirm if this search is only specific to the single file?The expectation is that the search is done within a file, not in its sibling files under the same parent folder.
We have a requirement to preview the Microsoft Office files(ppt, doc, excel files stored in AEM DAM) on a web page.1. Preview should be a pop-up when clicked on a preview button. It should display the desired format file on popup. 2. The other part of this requirement is to provide an option on the ...
This issue was resolved by excluding slf4j dependency from Azure open AI dependency <dependency>
<groupId>com.azure</groupId>
<artifactId>azure-ai-openai</artifactId>
<version>1.0.0-beta.3</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
...
I followed above solution, but getting below issue:"Could not initialize class com.azure.ai.openai.OpenAIClientBuilder"Caused by: java.lang.ExceptionInInitializerError: Exception java.lang.LinkageError: loader constraint violation: when resolving method "org.slf4j.impl.StaticLoggerBinder.getLoggerFa...