我正在为我的网络应用程序的特定部分创建API。 API位于子文件夹API中。请参阅下面的文件夹结构:
- API
- cars
- index.php
- count.php
然而,现在是棘手的部分。客户将请求以JSON结尾的端点:
cars.json =>汽车/ index.php文件 cars / count.json =>汽车/ count.php
我不是重写专家。但这可能吗?
答案 0 :(得分:1)
在你的htaccess中试试这个:
RewriteEngine on
RewriteRule ^cars\.json$ /cars/index.php [NC,L]
RewriteRule ^cars/count\.json$ /cars/count.php [NC,L]
第一条规则将 cars.json 重写为 cars / index.php ,第二条规则将 cars / count.json 重写为 cars / count.php 。