当http://www.hostname.com/first/api.php?type=link
用户请求http://www.hostname.com/first/api/getlink
.
所以我尝试了以下
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www\.hostname\.com\/first$
RewriteBase /
RewriteRule ^api/getlink$ \/api.php?type=link [L]
在一个.htaccess
文件中并放置在first/
文件夹中。我无法获得正确的重定向。但我越来越404 error
。有人可以指导我吗?提前致谢。