我已经购买了一个带有重音标记的域名:类似于www.èxample.com。
我的问题是,即使我以正确的方式配置了我的nginx服务器块(虚拟主机),它也与我创建的目录不匹配。 我试图在没有重音标记的情况下使用相同的配置,一切正常。
这是我在site-availables文件夹中的服务器阻止文件:
server {
listen 80;
root /var/www/example.com;
index index.php index.html index.html;
server_name *.èxample.com;
client_max_body_size 4G;
charset utf-8;
access_log /var/www/example.com/logs/nginx-access.log;
error_log /var/www/example.com/logs/nginx-error.log;
location / {
try_files $uri $uri/ /index.html;
}
# pass the PHP scripts to FastCGI server listening on the php-fpm socket
location ~ \.php$ {
try_files $uri =404;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
我该如何解决这个问题?
谢谢!