View Single Post
  #1  
Old 4th April 2013, 19:45
Ruffneck Ruffneck is offline
Senior Member
 
Join Date: Feb 2008
Posts: 71
Default pls help with Nginx !
hi !

where i must add my .htaccess in nginx.conf file ?

am added

rewrite ^/index.html$ /index.php last;
rewrite ^/(.*)-b-([0-9]+).ts(.*)$ /browse.php?cat=$2 last;
rewrite ^/(.*)-c-([0-9]+).ts(.*)$ /browse.php?browse_categories&category=$2 last;
rewrite ^/(.*)-d-([0-9]+).ts(.*)$ /download.php?id=$2 last;
rewrite ^/(.*)-s-([0-9]+).ts(.*)$ /details.php?id=$2 last;
rewrite ^/(.*)-a-(.*).ts(.*)$ /announce.php?passkey=$2 last;
rewrite ^/(.*)-u?([0-9]+).ts(.*)$ /userdetails.php?id=$2$3 last;
rewrite ^/(.*)-f([0-9]+).tsf(.*)$ /tsf_forums/index.php?fid=$2$3 last;
rewrite ^/(.*)-fd([0-9]+).tsf(.*)$ /tsf_forums/forumdisplay.php?fid=$2$3 last;
rewrite ^/(.*)-t([0-9]+).tsf(.*)$ /tsf_forums/showthread.php?tid=$2$3 last;


but is not work:(
Reply With Quote