2017-10-09 20 views
-2

この例ではhtaccessをNGINXに変換する方法を教えてください。htaccessをNGINXに変換するには?

<IfModule mod_rewrite.c> 
Options -MultiViews 
RewriteEngine On 
RewriteBase/
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteRule \.(js|css|jpeg|jpg|gif|png|ico)(\?|$) - [L,NC,R=404] 

RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteRule . /index.php [L] 
</IfModule> 

答えて

0

Apacheは複雑に見えます。しかし、Nginxの同じ設定はとても簡単です

root /var/www/html; 

location ~* \.(js|css|jpeg|jpg|gif|png|ico)(\?|$) { 
    try_files $uri =404; 
} 

location/{ 
    try_files $uri $uri/ /index.php; 
} 

location ~ \.php { 
    # <your fastcgi php handling config> 
} 
関連する問題