欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

.htaccess rewrite 规则详细说明

shiping1 的头像

 

猜你喜欢:

3 条评论

  1. leebin

    你好 我想问一下:apache 的 htaccess
    我想做到
    访问:
    localhost/项目名称/index.php/test/hello
    localhost/项目名称/test/hello

    都可以达到,传入index.php一个数组变量:
    Array ( [_url] => test/hello )
    我该怎么写规则?
    现在我就是

    RewriteEngine on
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^(.*)$ index.php?_url=$1 [QSA,PT,L]

    做不到 输入index.php的时候收到这个数组。
    请指点一下。

来自 http://www.cnphp.info/htaccess-rewrite.html
普通分类: