Hoping someone can point me in the right direction. I have built a dynamic index and details page. All works well when selecting a object on the index page. It is redirected to the details with a url like this "?option=com_sppagebuilder&view=dynamic&Itemid=111&collection_item_id[0]=117"
When I enable Search Engine Friendly URLs I get a 404 error when it attempts to open the alias url.
This is my NGINX rewrite rule
if (!-e $request_filename) {
rewrite ^/(.*)$ /index.php?q=$1 last;
}
I really need to be able to enable friendly URL rewrites. Thanks