【发布时间】:2023-03-27 23:26:01
【问题描述】:
我正在尝试通过应用重定向 301 的网站解决此问题。这是我的.htaccess:
RewriteEngine on
# Redirect "/" to Landing
RewriteRule ^$ http://greenengineering.com.au/landing/ [R=301,L]
# Additionally, redirect "/index.html" to Landing
RedirectMatch 301 ^/index\.html$ /landing
谁能指导我如何删除此重定向,以便用户可以访问主域http://greenengineering.com.au?
【问题讨论】:
标签: apache .htaccess mod-rewrite http-redirect