Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果您正在编写一个典型的 php 脚本,它位于您指向 url 的目录中。API 响应对树下目录的请求,例如 /api/feeds/80320。我假设 php 代码存在于 api 目录中,并且它读取它从 /feeds/80320 收到请求。怎么做的?
将您的所有请求重定向到一个 php 脚本。
在 apache 中你可以这样做 >
RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ /index.php [L]
然后在 PHP 脚本中解析$_SERVER['REQUEST_URI'];并施展你的魔法。
$_SERVER['REQUEST_URI'];