Htaccess重定向匹配301保留链接和文件

时间:2015-08-13 20:00:44

标签: .htaccess mod-rewrite redirect

我已移至新域名,我尝试了许多代码,以便对旧网站上的所有链接和文件进行重定向匹配301。所以基本上我想要一个执行此操作的代码:

#include  <stdio.h>
#include <stdlib.h>

typedef struct{
    int n;
    int *m;
}type_tt;

typedef struct{
    struct{
        int x;
        char* y;
        type_tt *h;
    }g;
}mstr;


int main(int argc, char const *argv[])
{
    int l;
    mstr p;
    p.g.h->m = &l;
    return 0;
}

1 个答案:

答案 0 :(得分:0)

在文件夹:/ subfolder /制作.htaccess文件并粘贴此代码:

  

RedirectMatch永久^ /子文件夹/(.*)$   http://newsite.com/subfolder/ $ 1

在文件夹:/ subfolder2 /制作.htaccess文件并粘贴此代码:

  

RedirectMatch永久^ / subfolder2 /(.*)$   http://newsite.com/subfolder2/ $ 1

在旧网站的根文件夹中创建.htaccess文件并粘贴此代码:

  

RedirectMatch永久^ /(。*)$ http://newsite.com/ $ 1