apache 의사 정적 으로 nginx 로 전환

1. apache 의사 정적 설정
vim httpd.conf
#[plain] view plain copy
#    
LoadModule rewrite_module modules/mod_rewrite.so
#  .htaccess
AccessFileName .htaccess

    Order allow,deny
    Deny from all
    Satisfy All

#   All,   .htaccess  
[plain] view plain copy
Options FollowSymLinks  
AllowOverride All

2. apache 의사 정적 파일
# cat .htaccess 
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]

3. nginx 의사 정적 설정
location / {
  if (!-f $request_filename){
         rewrite ^/(.*)$ /index.php?s=$1 last;
         break;
  }
}

좋은 웹페이지 즐겨찾기