我想把     /index.php/article/det/id/(任何数字)
重定向到   /index.php/p/(数字)
该怎么写?

解决方案 »

  1.   

    RewriteRule /index.php/p/([0-9]+) /index.php/article/det/id/$1
      

  2.   


    怎么无效啊,访问/index.php/article/det/id/5 不能跳到/index.php/p/5
      

  3.   

    跳到/index.php/p/5,下面你还重写最终跳的位置,5是什么位置什么东西,
    最终url我都不知道,难为apache了,给你出个404,该
    RewriteRule /index.php/article/det/id/([0-9]+) /index.php/p/$1
    改成这样才能跳到你这个要求,你把这句话也看一下,想怎么改怎么改