Report this

What is the reason for this report?

convert htaccess rewrite rule for nginx

Posted on November 6, 2015

Hi, this is my original Apache htaccess rule:

<IfModule mod_rewrite.c>
   RewriteEngine on
   RewriteBase /
   RewriteRule    ^$ myapp/webroot/    [L]
   RewriteRule    (.*) myapp/webroot/$1 [L]
</IfModule>

I managed to get general rewrites working using this line in my nginx server block config:

location / {
root /var/www/example.com/html;
try_files $uri $uri/ /index.php$is_args$args;
}

However, resources located inside the folder “myapp/webroot/” fail to load on my website since they are now called at root level instead of the specified folder in apache.

What do I need to change to make the original folder rewrite rules work in nginx?



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Hm, after lots of trial & error it turned out that I just needed to adjust nginx root folder to apache rewrite folders. Now it works fine.

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.