私は次のタイプの URL を使用します。
http://test.com/rest/api.php?action=test
しかし、これらのタイプの URL が必要です:
http://test.com/rest/api/action/test
.htaccess
これらのコードをここにファイルしようとしています
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-s
RewriteRule ^(.*)$ api.php?rquest=$1 [QSA,NC,L]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^(.*)$ api.php [QSA,NC,L]
RewriteCond %{REQUEST_FILENAME} -s
RewriteRule ^(.*)$ api.php [QSA,NC,L]