我正在尝试重定向我网站中的某个网址,但是我找不到错误404 我正在尝试重定向此网址:http://www.stoikovstroi.com/bg/противопожарни-врати
从这一个加载:http://www.stoikovstroi.com/vina/index.php/protivpojarni-vrati
onresized: function(){
updateLabels();
}
答案 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]