使用htaccess重写url的一些问题

时间:2014-10-24 20:58:00

标签: .htaccess url-rewriting

当用户访问" https://www.example.com/api3/SGy7bT" url然后我想加载" https://www.example.com/api3/webhook3_index2.php?random=SGy7bT"页。在浏览器上,网址不会更改,它将显示为顶部提到的网址。

我的htaccess文件存在于" / api3"文件夹中。

1 个答案:

答案 0 :(得分:0)

尝试:

RewriteEngine On
RewriteBase /api3/

RewriteCond %{THE_REQUEST} /api3/webhook3_index2\.php\?random=([^&\ ]+)
RewriteRule ^ %1? [L,R]

RewriteCond %{REQUEST_FILEAME} !-f
RewriteCond %{REQUEST_FILEAME} !-d
RewriteRule ^(.*)$ webhook3_index2.php?random=$1 [L,QSA]