- Edited
How to set it up so that when accessing the IP address, it redirects to the main website or a website of choice?
Where is this template stored?
How to set it up so that when accessing the IP address, it redirects to the main website or a website of choice?
Where is this template stored?
Hello, you can set a default website or add a website using IP address
apache: /www/server/apache/htdocs/index.html
nginx: /www/server/nginx/html/index.html
When I call up the server IP in the browser: 192.168.1.15
How do I make the redirection to my page: test.net?
server {
listen 443;
server_name 192.168.1.15;
return 301 https://test.net$request_uri;
}
Server Nginx, in which configuration file?
Hello, it is recommended that you use redirection so that you don’t need to write configurations.