htaccess rewrite rule in subfolder

巧了我就是萌 提交于 2020-01-26 03:07:05

问题


Hi i'm trying to create a REST API method in core php

I created a controller class and method class to call my function as per the reference

http://phppot.com/php/php-restful-web-service/

I have my files in sub-folder in my server where i'm currently creating this i face issue on accessing rewrite URL , how can u solve this issue below is the htaccess rule which i tried.

RewriteEngine on
RewriteBase /test/rest/
# map neat URL to internal URL
RewriteRule ^/test/rest/mobile/list/$   /test/rest/RestController.php?view=all [nc,qsa]
RewriteRule ^/test/rest/mobile/list/([0-9]+)/$   /test/rest/RestController.php?view=single&id=$1 [nc,qsa]

回答1:


The problem is with the pattern, because there is no leading slash, see Per-directory Rewrites

Per-directory Rewrites

  • ...
  • The removed prefix always ends with a slash, meaning the matching occurs against a string which never has a leading slash. Therefore, a Pattern with ^/ never matches in per-directory context.

So to fix this remove the leading slash in your patterns

RewriteRule ^test/rest/mobile/list/$ /test/rest/RestController.php?view=all [NC,QSA]
RewriteRule ^test/rest/mobile/list/([0-9]+)/$ /test/rest/RestController.php?view=single&id=$1 [NC,QSA]

Unrelated, but you don't need RewriteBase in this case, because you already use absolute substitution URLs.

Also, QSA|qsappend is only needed, if you expect that the requests have a query string.




回答2:


try the below code

RewriteEngine on
RewriteBase /test/rest/
RewriteRule /(.*)/ RestController.php?view=$1
RewriteRule /(.*)/(.*)/ RestController.php?view=$1&id=$2



回答3:


I got solution using Rewriting URL tool

http://www.webconfs.com/web-tools/url-rewriting-tool/



来源:https://stackoverflow.com/questions/42968567/htaccess-rewrite-rule-in-subfolder

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!