Hello,
I am migrating all my sites from apache to nginx server. Since I am fairly new with nginx and not very experienced with apache rewrite rules I would need help converting one rewrite rule to my nginx:
Here is my apache rewrite rule:
RewriteRule (.*)\.html index.php?module=website&action=$1
and here is with what I come up in nginx but is not working. I am getting a blank page:
rewrite (.*)\.html /index.php?module=website&action=$1;
thanks in advance for your help.
regards,
zozo6015