如果 %{REQUEST_URI} 以 %{HTTP_HOST} 开头,如何重写?
即http://example.com/example.com_custom_text -> http://example.com/index.php?q=special&info=example.com_custom_text
由于通用性,%{HTTP_HOST} 的使用很重要。
不工作:
RewriteCond %{REQUEST_URI} ^%{HTTP_HOST}
RewriteRule ^(.*)$ index.php?q=special&info=$1 [L,QSA]