我使用此项目https://github.com/mevdschee/php-crud-api来构建API服务器,但我不知道如何重写漂亮的URL。
我想要我的网址
domain.com/api.php/xxxx - > domain.com/xxxx
我试着用这个
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ api.php/$1 [L,QSA]
但它不起作用。