0
サブフォルダとすべてのコンテンツをルートドメインにリダイレクトしたい。例えばnginxサブフォルダをルートドメインにリダイレクト
:
server {
listen 80 default_server;
root /home/vishant/devcenter/wava-v1.1/HTML;
index index.html index.htm;
# Make site accessible from http://localhost/
server_name baetter.l;
location/{
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ =404;
#proxy_pass "http://127.0.0.1:3000";
# Uncomment to enable naxsi on this location
# include /etc/nginx/naxsi.rules
}
}
私は同様の問題がhtaccessファイルhere
しかし、どのようにすることができますを使用して解決を発見した:
http://www.example.com/ubb/マイサーバー構成は以下のようなものですhttp://www.example.com
にリダイレクトされます私はnginxで達成する?