我应该在.htaccess文件中写什么规则,让重定向工作从http://site.ru/index.php/ru - 到http://site.ru/ru/?
答案 0 :(得分:1)
答案 1 :(得分:0)
在apache中启用重写模块,然后将以下行添加到.htaccess
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?/$1 [L]
OR
RewriteBase /
RewriteCond %{THE_REQUEST} ^GET.*index\.php [NC]
RewriteRule (.*?)index\.php/*(.*) /$1$2 [R=301,NE,L]