X-Git-Url: https://git.cweiske.de/stouyapi.git/blobdiff_plain/e77aeb8c8c8741929d4c0e5db34725c5b24bc295..0d4e9f2836cdee1dc880a36846a5ca8ce3e4580f:/www/.htaccess diff --git a/www/.htaccess b/www/.htaccess index ba3ec53..1ba4fcc 100644 --- a/www/.htaccess +++ b/www/.htaccess @@ -13,6 +13,7 @@ RewriteRule ^api/v1/apps/(.*)$ /api/v1/apps/$1.json? [END] #rewrite developer products "only" GET parameter RewriteCond %{QUERY_STRING} &only=([^&]+) +RewriteCond %{DOCUMENT_ROOT}/api/v1/developers/$1/products/%1.json -f RewriteRule ^api/v1/developers/(.+)/products/ /api/v1/developers/$1/products/%1.json? [END] RewriteRule ^api/v1/discover/?$ /api/v1/discover-data/discover.json [END] @@ -22,5 +23,15 @@ RewriteRule ^api/v1/discover/(.+)$ /api/v1/discover-data/$1.json [END] RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^api/v1/games/(.+)/purchases?$ /api/v1/games/purchases-empty.json [END] +#search +# q is first parameter +RewriteCond %{QUERY_STRING} ^q=([^&]+) +RewriteCond %{DOCUMENT_ROOT}/api/v1/search-data/%1.json -f +RewriteRule ^api/v1/search /api/v1/search-data/%1.json? [END] +# q is not the first parameter +RewriteCond %{QUERY_STRING} &q=([^&]+) +RewriteCond %{DOCUMENT_ROOT}/api/v1/search-data/%1.json -f +RewriteRule ^api/v1/search /api/v1/search-data/%1.json? [END] + #this one wants a 204 status code RewriteRule ^api/v1/status$ - [R=204,L]