2

我在 .htaccess 中使用以下 URL 重写。

Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /

RewriteRule ^([0-9]+)/([a-zA-Z0-9\&_,-]+)$ business/business_home.php?business_id=$1 [L,QSA]
RewriteRule ^([0-9]+)/([a-zA-Z0-9\&_,-]+)/(about)$ business/business_about.php?business_id=$1 [L,QSA]
RewriteRule ^([0-9]+)/([a-zA-Z0-9\&_,-]+)/(products)$ business/business_products.php?business_id=$1 [L,QSA]
RewriteRule ^([0-9]+)/([a-zA-Z0-9\&_,-]+)/(enquiry)$ business/business_enquiry.php?business_id=$1 [L,QSA]
RewriteRule ^([0-9]+)/([a-zA-Z0-9\&_,-]+)/(contact)$ business/business_contact.php?business_id=$1 [L,QSA]

## hide .php extension
# To externally redirect /dir/foo.php to /dir/foo
RewriteCond %{ENV:REDIRECT_STATUS} ^$
RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s([^.]+)\.php[\s\?] [NC]
RewriteRule ^ - [R=404,L]

# To internally forward /dir/foo to /dir/foo.php
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{DOCUMENT_ROOT}/$1.php -f
RewriteRule ^(.+?)/?$ /$1.php [L]

那么如何获取当前重写的 URL,不包括查询字符串?例如:从具有 URL 的页面: /22/somestring/enquiry?value=5&page=9&item=coffee 我期望: /22/somestring/enquiry

我试过了,$_SERVER['REQUEST_URI']但它返回了/22/somestring/enquiry?value=5&page=9&item=coffee ,也$_SERVER['REDIRECT_URL']给了我我所期望的,但它Notice: Undefined index: REDIRECT_URL在某些页面中生成了一个。而且它在某些服务器中也不起作用。

4

2 回答 2

2

在您的 PHP 中,您可以使用这样的代码来获取当前 URI而无需查询字符串

$thisuri = preg_replace('/\?.*$/', '', $_SERVER["REQUEST_URI"]);
于 2013-11-09T05:59:14.370 回答
0

我不相信 PHP 对没有查询字符串的 URL 有超全局,但您可以手动删除查询字符串:

protected function stripQuery($str){
  return preg_replace('/\?(.*)/', '', $str);
}
于 2013-11-09T05:59:04.033 回答