调度程序httpd conf和sling internalredirects之间存在冲突。 我有<"域"> /content/abc/1.html和<"域"> /content/def/1.html应分别解析为/1.html。
我尝试在httpd.conf的虚拟主机中执行以下配置更改:
RewriteRule ^/content/abc/(.*)$ /$1 [NE,L,R=301]
RewriteRule ^ / content / def /(.*)$ / $ 1 [NE,L,R = 301]
此外,我尝试过使用sling:内部重定向,内容为/ abc / $ 1,内容/ def / $ 1,$ 1
但该网站始终呈现abc内容,因为它是第一次内部重定向所得到的内容。如果有问题,请你告诉我吗?和解决方案相同? **************简单来说*************** 以下URLS: https://mysite.city.com/content/abc/en/quote.html https://mysite.city.com/content/def/en/quote.html 应呈现为: https://mysite.city.com/en/quote.html