首頁  >  文章  >  後端開發  >  htaccess 伪静态跳转问题

htaccess 伪静态跳转问题

WBOY
WBOY原創
2016-06-23 14:14:161048瀏覽

php 

想从tag/abc 跳到 tag/index.php?t=abc



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

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



回复讨论(解决方案)

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

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

给力啊,解决了~
伪静态里重复(循环)跳转是个隐晦误点

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn