我目前使用的是,
RewriteEngine On
RewriteBase /
RewriteRule ^blahblah/([a-z]+)$ abcd.php?word=$1 [L]
所以当前的输出是 site.com/blahblah/word
我想要实现的是,site.com/blahblah/the-word-is-word
到处搜索,找不到任何东西这是怎么回事:(
例子 :
原始网址:site.com/abcd.php?word=Google
目前 :site.com/blahblah/Google
我在找什么:site.com/blahblah/the-word-is-Google
PS:大写确实很重要,因为谷歌和谷歌会有所不同。