Jump to content

Apache to Nginx


The Little Guy

Recommended Posts

I think I want to convert my server from Apache to Nginx, but one problem I think I may face is mod rewrite rules.

 

my current .htaccess file looks like this:

RewriteEngine on
RewriteRule ^snip/([0-9]+)$ snippet.php?id=$1
RewriteRule ^snip-([0-9]+)$ snippet.php?id=$1
RewriteRule ^snip/images$ /images

 

Is there anything I need to do when converting? do similar rewrite rules work with Nginx?

 

Any other thoughts on converting or on Nginx?

Link to comment
Share on other sites

so, it looks like all I had to do on my server was create an nginx dir in my root and add the domain dir. I then just create files in it and I was able to do this for the rewrites:

 

rewrite ^/snip/([0-9]+)$ /snippet.php?id=$1;
rewrite ^/snip-([0-9]+)$ /snippet.php?id=$1;
rewrite ^/snip/images$ /images;

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.