HTML。在浏览器地址栏显示IP地址,而不是实际的网站地址

时间:2017-09-13 04:17:16

标签: php html server

我正在开展一个项目,我想在一个地方将我的正常网址改为IP地址,即地址http:/www.mydomain.com/index.php将变为http:/192.xx .xxx.25 /。这仅适用于一个特定页面,不适用于整个站点。 任何人都可以帮助我如何能够做到这一点。感谢....

1 个答案:

答案 0 :(得分:1)

如果您使用的是Apache,可以使用htaccess来完成。

void CSharedObj::reset(Ptr pointee) noexcept
{
   //check if this is a last reference-detach from the previous ownership
   if(0==dec()) delete m_pControlObj;
   // create the ownership over the new pointee (refCnt = 1)
   m_pControlObj = new (std::nothrow) CControlObj(pointee);
}

对于Nginx,您可以在Nginx配置文件中添加以下内容

Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^example.com[nc]
RewriteRule ^(.*)$ http://www.example.com/$1 [r=301,nc]

//301 Redirect Old File
Redirect 301 /specific_page_slug http://192.168.0.1