Chào mọi người,
Mình đang có một vấn đề về htaccess, nếu ai biết xin hướng dẫn:
Hiện tại website của mình có dạng như sau:
www.domain.com/features/
Bây giờ website hỗ trợ nhiều ngôn ngữ, bao gồm: en,es,fr,jp,vi,de và mình muốn domain trông giống như sau:
www.domain.com/features/fr
www.domain.com/features/fr/ten-bai-viet
nếu là ngôn ngữ mặc định, nó nên hiển thị
www.domain.com/features/ten-bai-viet
Đây là code trong htaccess hiện tại:
Code:
######################################
Options +FollowSymLinks -MultiViews
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
RewriteBase /
RewriteRule ^features/?$ index.php?main_page=features[QSA,L]
RewriteRule ^features/.*$ index.php?main_page=features[QSA,L]
RewriteRule ^features\?(.*)$ index.php?main_page=features?$1 [QSA,L]
######################################
Cám ơn mọi người nhiều.