htaccess重定向一个url从另一个url加载

时间:2016-03-23 09:12:20

标签: .htaccess redirect

我正在尝试重定向我网站中的某个网址,但是我找不到错误404 我正在尝试重定向此网址:http://www.stoikovstroi.com/bg/противопожарни-врати

从这一个加载:http://www.stoikovstroi.com/vina/index.php/protivpojarni-vrati

onresized: function(){
    updateLabels();
}

1 个答案:

答案 0 :(得分:0)

在站点根目录中使用此规则.htaccess:

RewriteEngine On

RewriteCond %{HTTP_HOST} ^(www\.)?stoikovstroi\.com$ [NC]
RewriteRule ^bg/противопожарни-врати/?$ /vina/index.php/protivpojarni-vrati [L,NC,R=302,B]

/vina/.htaccess目录中使用此规则:

RewriteEngine On
RewriteBase /vina/

RewriteRule ^((?!index\.php/).*)$ index.php/$1 [L,NC]