Redirect 试图重定向我的网站

Redirect 试图重定向我的网站,redirect,web,Redirect,Web,所以我想知道如何将我的网站重定向到/forum目录。目前,搜索avianrp.com会让我找到一个索引 我试过几种不同的方法。我的假设是将代码放入.htaccess。这是原始的.htaccess在我的/forum区域中,我删除了所有似乎不起作用的代码。我应该创建一个新文件夹,还是我做错了什么?谢谢 Options -MultiViews +FollowSymlinks -Indexes # # If mod_security is enabled, attempt to disable it.

所以我想知道如何将我的网站重定向到
/forum
目录。目前,搜索
avianrp.com
会让我找到一个索引

我试过几种不同的方法。我的假设是将代码放入
.htaccess
。这是原始的
.htaccess
在我的
/forum
区域中,我删除了所有似乎不起作用的代码。我应该创建一个新文件夹,还是我做错了什么?谢谢

Options -MultiViews +FollowSymlinks -Indexes

#
# If mod_security is enabled, attempt to disable it.
# - Note, this will work on the majority of hosts but on
#   MediaTemple, it is known to cause random Internal Server
#   errors. For MediaTemple, please remove the block below
#
<IfModule mod_security.c>
    # Turn off mod_security filtering.
    SecFilterEngine Off

    # The below probably isn't needed, but better safe than sorry.
    SecFilterScanPOST Off
</IfModule>

#
# MyBB "search engine friendly" URL rewrites
# - Note, for these to work with MyBB please make sure you have
#   the setting enabled in the Admin CP and you have this file
#   named .htaccess
#
<IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteRule ^forum-([0-9]+)\.html$ forumdisplay.php?fid=$1 [L,QSA]
    RewriteRule ^forum-([0-9]+)-page-([0-9]+)\.html$ forumdisplay.php?fid=$1&page=$2 [L,QSA]

    RewriteRule ^thread-([0-9]+)\.html$ showthread.php?tid=$1 [L,QSA]
    RewriteRule ^thread-([0-9]+)-page-([0-9]+)\.html$ showthread.php?tid=$1&page=$2 [L,QSA]
    RewriteRule ^thread-([0-9]+)-lastpost\.html$ showthread.php?tid=$1&action=lastpost [L,QSA]
    RewriteRule ^thread-([0-9]+)-nextnewest\.html$ showthread.php?tid=$1&action=nextnewest [L,QSA]
    RewriteRule ^thread-([0-9]+)-nextoldest\.html$ showthread.php?tid=$1&action=nextoldest [L,QSA]
    RewriteRule ^thread-([0-9]+)-newpost\.html$ showthread.php?tid=$1&action=newpost [L,QSA]
    RewriteRule ^thread-([0-9]+)-post-([0-9]+)\.html$ showthread.php?tid=$1&pid=$2 [L,QSA]

    RewriteRule ^post-([0-9]+)\.html$ showthread.php?pid=$1 [L,QSA]

    RewriteRule ^announcement-([0-9]+)\.html$ announcements.php?aid=$1 [L,QSA]

    RewriteRule ^user-([0-9]+)\.html$ member.php?action=profile&uid=$1 [L,QSA]

    RewriteRule ^calendar-([0-9]+)\.html$ calendar.php?calendar=$1 [L,QSA]
    RewriteRule ^calendar-([0-9]+)-year-([0-9]+)-month-([0-9]+)\.html$ calendar.php?calendar=$1&year=$2&month=$3 [L,QSA]
    RewriteRule ^calendar-([0-9]+)-year-([0-9]+)-month-([0-9]+)-day-([0-9]+)\.html$ calendar.php?action=dayview&calendar=$1&year=$2&month=$3&day=$4 [L,QSA]
    RewriteRule ^calendar-([0-9]+)-week-(n?[0-9]+)\.html$ calendar.php?action=weekview&calendar=$1&week=$2 [L,QSA]

    RewriteRule ^event-([0-9]+)\.html$ calendar.php?action=event&eid=$1 [L,QSA]

    <IfModule mod_env.c>
        SetEnv SEO_SUPPORT 1
    </IfModule>
</IfModule>

#
# If Apache is compiled with built in mod_deflade/GZIP support
# then GZIP Javascript, CSS, HTML and XML so they're sent to
# the client faster.
#
<IfModule mod_deflate.c>
    AddOutputFilterByType DEFLATE application/javascript text/css text/html text/xml
</IfModule>

# Note: You are able to choose a different name in the Admin CP. If you've done that you need to change it here too
<Files "error.log">
    Order Deny,Allow
    Deny from all
</Files>
Options-多视图+FollowSymlinks-索引
#
#如果mod_security已启用,请尝试禁用它。
#-注意,这将适用于大多数主机,但不适用于
#例如,已知会导致随机内部服务器
#错误。例如,请删除下面的块
#
#关闭mod_安全过滤。
分离过滤器发动机关闭
#下面的内容可能不需要,但安全总比抱歉好。
secfilters可以关闭
#
#MyBB“搜索引擎友好”URL重写
#-注意,要使这些与MyBB一起使用,请确保
#在管理CP中启用该设置,并且您拥有此文件
#命名的.htaccess
#
重新启动发动机
重写规则^forum-([0-9]+)\.html$forumdisplay.php?fid=$1[L,QSA]
重写规则^forum-([0-9]+)-page-([0-9]+)\.html$forumdisplay.php?fid=$1&page=$2[L,QSA]
重写规则^thread-([0-9]+)\.html$showthread.php?tid=$1[L,QSA]
重写规则^thread-([0-9]+)-page-([0-9]+)\.html$showthread.php?tid=$1&page=$2[L,QSA]
重写规则^thread-([0-9]+)-lastpost\.html$showthread.php?tid=$1&action=lastpost[L,QSA]
重写规则^thread-([0-9]+)-nextnewest\.html$showthread.php?tid=$1&action=nextnewest[L,QSA]
重写规则^thread-([0-9]+)-nextoldest\.html$showthread.php?tid=$1&action=nextoldest[L,QSA]
重写规则^thread-([0-9]+)-newpost\.html$showthread.php?tid=$1&action=newpost[L,QSA]
重写规则^thread-([0-9]+)-post-([0-9]+)\.html$showthread.php?tid=$1&pid=$2[L,QSA]
重写规则^post-([0-9]+)\.html$showthread.php?pid=$1[L,QSA]
重写规则^announcement-([0-9]+)\.html$announcements.php?aid=$1[L,QSA]
重写规则^user-([0-9]+)\.html$member.php?action=profile&uid=1[L,QSA]
重写规则^calendar-([0-9]+)\.html$calendar.php?calendar=$1[L,QSA]
重写规则^calendar-([0-9]+)-year-([0-9]+)-month-([0-9]+)\.html$calendar.php?calendar=$1,year=$2,month=$3[L,QSA]
重写规则^calendar-([0-9]+)-年-([0-9]+)-月-([0-9]+)-日-([0-9]+)\.html$calendar.php?action=dayview&calendar=$1&year=$2&month=$3&day=$4[L,QSA]
重写规则^calendar-([0-9]+)-week-(n?[0-9]+)\.html$calendar.php?action=weekview&calendar=$1&week=$2[L,QSA]
重写规则^event-([0-9]+)\.html$calendar.php?action=event&eid=1[L,QSA]
SetEnv SEO_支持1
#
#如果Apache是使用内置的mod_deflade/GZIP支持编译的
#然后GZIP Javascript、CSS、HTML和XML将它们发送到
#客户端速度更快。
#
AddOutputFilterByType DEFLATE应用程序/javascript文本/css文本/html文本/xml
#注意:您可以在管理CP中选择不同的名称。如果您已经这样做,您也需要在此处更改它
命令拒绝,允许
全盘否定

对于.htaccess,它是这样的

# This allows you to redirect your entire website to any other domain
重定向301/

重定向/index.html

参考这个

如果这不是你要找的,你可以随时进行元标记刷新

<META http-equiv="refresh" content="0;URL=http://www.example.com/~account/new-directory">

“0”是距离重定向的秒数

<META http-equiv="refresh" content="0;URL=http://www.example.com/~account/new-directory">