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
https://forums.phpfreaks.com/topic/261323-apache-to-nginx/
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
https://forums.phpfreaks.com/topic/261323-apache-to-nginx/#findComment-1339203
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.