所以我正在爲我正在開發的儀表板開發一個API。我想改變API網址看起來更好,所以我看了看RewriteRule。它似乎重定向罰款,但$ _GET和$ _REQUEST是空的。這裏是我的.htaccess文件(是/儀表板/)規則:RewriteRule不包括獲取參數
Options +FollowSymLinks
RewriteEngine On
RewriteBase/
RewriteRule ^dashboard/api/1/(user|venue)/?([^/]*)/?([^/]*)/?$ api.php?type=$1&action=read&id=$2 [QSA,L]
就像我說的,它其實打api.php,但type
,action
和id
不可在請求變量PHP的?
對不起和.htaccess是根WWW'/'文件夾,而不是'/儀表板/' – mihok
給URL的一個例子,你希望得到什麼變數。像這樣:http:// sitename/dashboard/api/1/user/param1/param2 – user4035