我已经将我的域名scotnery.com转发给jugglegood.com很长一段时间了。现在,我想在scotnery.com(索引页面)上使用css,img和js托管单个页面。我想将所有其他请求重定向到jugglegood.com,因为有些网站可能链接到“scotnery.com/tv”,我希望将其发送到“jugglegood.com/tv”
这是我目前在scotnery.com上的htaccess文件,这对我不起作用,看起来很复杂
RewriteEngine on
RewriteCond %{REQUEST_URI} !^/img/.*
RewriteCond %{REQUEST_URI} !^/img$
RewriteCond %{REQUEST_URI} !^/css/.*
RewriteCond %{REQUEST_URI} !^/css$
RewriteCond %{REQUEST_URI} !^/js/.*
RewriteCond %{REQUEST_URI} !^/js$
RewriteCond %{REQUEST_URI} !^/img/.*
RewriteCond %{REQUEST_URI} !^/img$
RewriteCond %{REQUEST_URI} !^/(index|other-page)\.php
RewriteCond %{REQUEST_URI} !^/
RewriteRule .* http://jugglegood.com/ [R=301,L]
答案 0 :(得分:0)
这是生成的htaccess文件内容。一位朋友帮帮我...
RewriteEngine On
RewriteCond %{REQUEST_URI} !(\.png|\.jpg|\.gif|\.jpeg|\.bmp|\.css|\.js|index\.php)$
RewriteCond %{REQUEST_URI} !^/$
RewriteRule (.*) http://jugglegood.com/$1 [R=301,NC,L]