Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # nginx configuration
- index index.php;
- charset utf-8;
- error_page 404 /index.php;
- error_page 403 /index.php;
- location ~ \.(css|js|jpg|jpeg|png|gif)$ {
- }
- location / {
- if (!-e $request_filename){
- rewrite ^(.*)$ /index.php?/$1 break;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement