Welcome! Log In Create A New Profile

Advanced

IP canonicalization dan URL canonicalization

Posted by antonhilman 
IP canonicalization dan URL canonicalization
February 22, 2015 09:31AM
Bagaimana cara untuk IP canonicalization dan URL canonicalization di nginx?

kalau di buka http://111.222.333.444 forward ke http://www.domain.com

kalau buka http://domain.com forward ke http://www.domain.com

ini default.conf saya:
------------------------begin------------------
server {
listen 80;
server_name domain.com www.domain.com;
root /home/user/www/domain.com/public_html;
index index.php index.html;
include /etc/nginx/default.d/*.conf;

location / {
try_files $uri/ $uri /index.php?mod=$uri&$args;
}

error_page 404 /404.php;

location ~ \.php$ {
include /etc/nginx/fastcgi_params;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}

rewrite ......
dst..........
}
----------------------------end-----------------------

terima kasih
Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 284
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready