2012-02-06 7 views
0

URL에 /hd/이없는 경우 사용자를 /hd/142으로 리디렉션하려고합니다. 나는 많은 옵션을 시도했고 그들 중 대부분은 단지 나를 반복해서 리다이렉트했다. 다음은 현재 설정되어있는 .htaccess입니다.codeIgniter 용 htaccess

RewriteEngine on 
RewriteCond $1 !^(index\.php|images|css|js) 
RewriteRule ^hd/(.*)$ /index.php/$1 [L] 
RewriteRule ^(images|css|js)/(.*) /applicationFiles/$1/$2 [L] 

감사

답변

0
RewriteEngine on 
RewriteBase/

#if url does not have hd in it 
RewriteCond %{REQUEST_URI} !^/hd/ [NC] 
#redirect to hd 
RewriteRule^/hd/142 [L,R=301] 

#existing rules 
RewriteCond $1 !^(index\.php|images|css|js) [NC] 
RewriteRule ^hd/(.*)$ /index.php/$1 [L,NC] 
RewriteRule ^(images|css|js)/(.*) /applicationFiles/$1/$2 [L]