trouble with utf-8 chars & apache2 rewrite rules

前端 未结 6 1975
南方客
南方客 2021-02-19 23:46

I see the post validating utf-8 in htaccess rewrite rule and I think that is great, but a more fundamental problem I am having first:

I needed to expand to handle utf-

6条回答
  •  再見小時候
    2021-02-20 00:47

    work with CodeIgniter and utf-8 vietnamese (Tiếng Việt) file .htaccess:

    RewriteEngine on
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^(.+[a-z,A-Z,0-9,ễ].+)$ index.php/$1 [L]
    

    when url have 'ễn' then error => RewriteRule have 'ễ'

提交回复
热议问题