我想这样做:(首先,ci 是我的 codeigniter 文件夹)
如果用户调用 ci/2012.htm 我想重定向 ci/oyna/oyun/2012.htm 我正在尝试使用它,但它没有运行。
RewriteEngine on
RewriteCond $1 !^(index\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
RewriteRule ^(.*)$ index.php/oyna/oyun/$1 [L,QSA]
当我调用 ci/2012.htm 时,它返回 codeigniter 404 not found 页面。