How to port this .htaccess rules to be used on a nginx webserver:
-----------------------------------------------------------------------------
Options +FollowSymlinks
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !index\.php$
RewriteRule ^(.*)$ index.php?q=$1 [L]
------------------------------------------------------------------------------
Thanks, Nexon
-----------------------------------------------------------------------------
Options +FollowSymlinks
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !index\.php$
RewriteRule ^(.*)$ index.php?q=$1 [L]
------------------------------------------------------------------------------
Thanks, Nexon