当前位置: 代码迷 >> PHP >> htaccess 伪静态跳转有关问题
  详细解决方案

htaccess 伪静态跳转有关问题

热度:1035   发布时间:2013-07-04 11:45:40.0
htaccess 伪静态跳转问题
想从tag/abc 跳到 tag/index.php?t=abc



RewriteRule ^tag/(.*)$ tag/index.php?t=$1

index.php
print_r($_GET['t']);//显示的是index.php 而不是 abc 怎么办??


php?

------解决方案--------------------

RewriteRule ^tag/(?!index\.php)(.*)$ tag/index.php?t=$1
  相关解决方案