Hi,
I tried my best to make things happen but no luck.
Here is my original rule :
[code]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([a-zA-Z_.\-0-9]+)$ index.php?pinto=$1 [L,QSA]
[/code]
And my nginx one :
[code]
rewrite ^([a-zA-Z_.\-0-9]+)$ index.php?pinto=$1 last;
[/code]
But no guess what, it doesn't work.
What do I miss here ?
Many thanks,
See you,
Larry
I tried my best to make things happen but no luck.
Here is my original rule :
[code]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([a-zA-Z_.\-0-9]+)$ index.php?pinto=$1 [L,QSA]
[/code]
And my nginx one :
[code]
rewrite ^([a-zA-Z_.\-0-9]+)$ index.php?pinto=$1 last;
[/code]
But no guess what, it doesn't work.
What do I miss here ?
Many thanks,
See you,
Larry