Thank you both for responding. Your comments were just what I needed to lead me to the answer.
I'm running my local Joomla on an MAMP Nginx server. I found this post https://docs.joomla.org/Enabling_Search ... s_on_Nginx which suggested a configuration setting to the nginx.conf file. I added it and now everything now is working fine!
Just for the sake of documenting this (in case someone else has this issue).
My nginx.conf file is located in Applications/MAMP/conf/nginx/nginx.conf . I added the line try_files $uri $uri/ /index.php?$args; to the http - server - location / property as indicated in these screen shots:
Restarted the server and it worked fine.
Thanks again!
I'm running my local Joomla on an MAMP Nginx server. I found this post https://docs.joomla.org/Enabling_Search ... s_on_Nginx which suggested a configuration setting to the nginx.conf file. I added it and now everything now is working fine!
Just for the sake of documenting this (in case someone else has this issue).
My nginx.conf file is located in Applications/MAMP/conf/nginx/nginx.conf . I added the line try_files $uri $uri/ /index.php?$args; to the http - server - location / property as indicated in these screen shots:
Code:
location / { try_files $uri $uri/ /index.php?$args; index index.html index.php;}
Thanks again!
Statistics: Posted by JeffOnWire — Thu Aug 08, 2024 5:26 pm