Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


can someone convert apache htaccess code to nginx conf
New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

can someone convert apache htaccess code to nginx conf

 sam-maximum sam-maximum Member
edited February 2013 in Help

Options +FollowSymLinks RewriteEngine on RewriteRule ^mangas/([^/]+)/([^/]+)/$ - [F,L] RewriteRule ^mangas/([^/]+)/$ - [F,L] RewriteRule ^mangas(/?)$ - [F,L] RewriteRule ^([^/.]+)/([^/.]+)/([0-9]+)(/?)$ read-manga.php?manga=$1&chapter=$2&page=$3 [L] RewriteRule ^([^/.]+)/([^/.]+)(/?)$ read-manga.php?manga=$1&chapter=$2 [L] RewriteRule ^([^/.]+)(/?)$ read-manga.php?manga=$1

Comments

  •     rewrite ^/([^/.]+)/([^/.]+)/([0-9]+)(/?)$ /read-manga.php?manga=$1&chapter=$2&page=$3 last;
        rewrite ^/([^/.]+)/([^/.]+)(/?)$ /read-manga.php?manga=$1&chapter=$2 last;
        rewrite ^/([^/.]+)(/?)$ /read-manga.php?manga=$1;
    
  • murky did you tried any conversion tool because most known 2 convertors didn't worked

  • @rajin90 said: murky did you tried any conversion tool because most known 2 convertors didn't worked

    If you're using nginx, you should get used to the fact that most converters do not work properly, often not producing optimal code.

Sign In or Register to comment.