この会話は、活動がないためロックされています。新しい投稿を作成してください。
この会話は、活動がないためロックされています。新しい投稿を作成してください。
Hy Guys,
I was trying to remove the "/content/project" from URL.
I've configured on the Apache Sling Resource Resolver Factory in the URL Mappings field.
When I'm accessing the URL http://localhost:4502/content/ATT/en.html it was returning 200, but when I'm accessing the URL http://localhost:4502/en.html it was returning 404.
Does anyone have an opinion about that configuration?
Thanks
Alisson Xavier
解決済! 解決策の投稿を見る。
表示
返信
いいね!の合計
you can make use of sling:internalredirect as described in below article:
so suppose if my url is http://localhost:4502/content/foxtel/login.html
http://localhost:4502/content/project/login.html
then it will change it http://localhost:4502/login.html
check if that works for you.
~ Prince
表示
返信
いいね!の合計
you can make use of sling:internalredirect as described in below article:
so suppose if my url is http://localhost:4502/content/foxtel/login.html
http://localhost:4502/content/project/login.html
then it will change it http://localhost:4502/login.html
check if that works for you.
~ Prince
表示
返信
いいね!の合計
Thanks Prince!!
It works.
表示
返信
いいね!の合計
Another question.
Can I configure this on the dispatcher also?
表示
返信
いいね!の合計
You can configure it "apache" via mod_rewrite - mod_rewrite - Apache HTTP Server Version 2.4
E.g. RedirectMatch ^/en.html$ /content/ATT/en.html [PT,L]
表示
返信
いいね!の合計