dongqi6486 2013-06-16 13:26
浏览 47
已采纳

.htaccess与codeigniter重定向

I am using codeigniter trying to achieve this

test.html redirect to 

index.php/test/test

well 1st test is folder name

& 2nd test is controller

  • 写回答

1条回答 默认 最新

  • dougou6727 2013-06-16 13:29
    关注

    For test.html you can do it like this you .htaccess

    RewriteEngine On
    RewriteBase /
    RewriteRule ^test.html$ index.php/test/test [L]
    

    OR in routes.php you can also define a route

    $route['test.html'] = 'index.php/test/test';
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?