htaccess to Nginx

cg1

In Runtime
Messages
160
Location
Guernsey
Hi, can anybody help be to convert this htaccess file to a nginx rewrite.
Thanks
Craig

Code:
RewriteEngine on

#RewriteBase /v2/

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

RewriteCond $1 !^(index\.php|images|img|css|js|robots\.txt)
RewriteRule (.*) index.php/$1 [L]
 
Back
Top Bottom