我的提供商在他们托管的每个网站上都支持名为Awstats的网络分析工具。我不再需要这项服务,但我不能告诉他们删除它。这就是我需要用.htaccess
禁止它的原因。
我希望将请求www.example.de/logs
的所有人重定向到www.example.de/
。我怎样才能做到这一点?我几乎没有使用.htaccess
文件的经验。
答案 0 :(得分:1)
要使用.htaccess将一个页面重定向到另一个页面或网站,请执行以下操作: 使用:
Redirect 301 /folder http://www.example.org/
或
RedirectMatch 301 /folder http://www.example.com/
在您的情况下,您可以在您的网站根级别的.htaccess文件中添加此内容,即。 public_html / .htaccess
Redirect 301 /logs http://www.example.de/