0
我試圖將用戶重定向到/hd/142
,如果他們在URL中沒有/hd/
。我嘗試了很多選擇,其中大部分都是一次又一次地重定向我。這裏是我設置的當前.htaccess
。htaccess for codeIgniter
RewriteEngine on
RewriteCond $1 !^(index\.php|images|css|js)
RewriteRule ^hd/(.*)$ /index.php/$1 [L]
RewriteRule ^(images|css|js)/(.*) /applicationFiles/$1/$2 [L]
感謝