Expand my Community achievements bar.

SOLVED

AEM SPA - Rewrite URL with Query Parameter not loading coz of incorrect .model.json call

Avatar

Level 2

We are in SPA with React implementation. 

We have product and category pages in our site which are being rendered dynamically. Hence, in AEM we just have one page for rendering category or product.

So, the actual page URL is  /en/category/categoryName but, using rewrites I have mapped it to /en/category.html?key=categoryName. But on dispatcher  I see there are 2 calls being made

en.model.json

categoryName.model.json

And, coz of this the page is not loading on dispatcher. Is there anyone else who faced this issue ? 

 

Dispatcher Log Entry -- >

/en/category.html?key=categoryName.model.json  

 

Env - AEM Cloud 

1 Accepted Solution

Avatar

Correct answer by
Employee Advisor

@Gunjan_13  Please refer to below where the similar issue is discussed.

You have two options:

1. Either you could fix :path property https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/aem-spa-react-dispatcher-s...

2. or I would suggest to use selector (/en/category.categoryName.html) to serve all category pages with single aem page. This would not require you to have a rewrite rule

View solution in original post

1 Reply

Avatar

Correct answer by
Employee Advisor

@Gunjan_13  Please refer to below where the similar issue is discussed.

You have two options:

1. Either you could fix :path property https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/aem-spa-react-dispatcher-s...

2. or I would suggest to use selector (/en/category.categoryName.html) to serve all category pages with single aem page. This would not require you to have a rewrite rule