Nasıl ana için tek bir URL için birden çok URL yönlendirebilirsiniz?

0 Cevap php

Ben CodeIgniter üzerine kurulmuş bir site var ama küçük bir sorun rastlamak var. Temelde ana sayfası olan, 3 farklı adresler üzerinden erişilebilir:

www.domain.com / tr

www.domain.com / tr/

www.domain.com / tr/home.html

I'd like the first and third url to redirect to the second (www.domain.com / tr/).

Ben saatlerce. Htaccess ile oynamak oldum ve ben herhangi bir değişiklik yapılması için görünmüyor olabilir.

Herhangi bir Yardım gerçekten takdir.

Edit: Here is my current .htaccess

Options +FollowSymLinks
RewriteEngine on
RewriteBase /

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

RewriteCond $1 !^(index\.php|images|css|js|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [QSA,L]

RewriteCond %{HTTP_HOST} ^mywebsite.com [NC] 
RewriteRule ^(.*)$ http://www.mywebsite.com/$1 [L,R=301]

RewriteRule ^en(/home.html)?$ /en/ [L]

0 Cevap