1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-22 04:04:16 +00:00

redirect with webroot

This commit is contained in:
asokolov 2018-11-09 16:13:56 +03:00
parent 23ae220aa7
commit a12a7e73f9

View File

@ -1034,8 +1034,8 @@ namespace http {
} }
s << "<b>SUCCESS</b>:&nbsp;Command accepted<br><br>\r\n"; s << "<b>SUCCESS</b>:&nbsp;Command accepted<br><br>\r\n";
s << "<a href=\"" << url.path << "?page=commands\">Back to commands list</a><br>\r\n"; s << "<a href=\"" << url.path << "?page=commands\">Back to commands list</a><br>\r\n";
// s << "<p>You will be redirected in 5 seconds</b>"; s << "<p>You will be redirected in 5 seconds</b>";
// res.add_header("Refresh", "5; url=/?page=commands"); res.add_header("Refresh", std::string("5; url=" + url.path + "?page=commands").c_str());
} }
void HTTPConnection::SendReply (HTTPRes& reply, std::string& content) void HTTPConnection::SendReply (HTTPRes& reply, std::string& content)