I’ve remove apache and installed nginx (following instructions on the documentation on this site)
all seems to be good and seem to have nginx running.
I’d like to redirect website.com/register to the index.php file and pass ‘register’ in as the URL parameters (permalink style but not wordpress)
previous .htaccess looks like this (not that I fully understand this either ;o)
RewriteCond $1 !^(index.php|files|images|css|js)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ ./index.php?$1 [L,QSA]
basically whatever the parameters are on th url they get passed into the index.php file
I think its to do with the location parameter in the nginx configuration. (I haven’t spotted or understood the information I’ve googled)
I’ll have a further look into it tomorrow to see how I get on
but any help appreciated in the meantime
thanks