ホームページ  >  記事  >  バックエンド開発  >  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 までご連絡ください。
前の記事:文字列の分割次の記事:文字列の分割