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.
我为 Wordpress 创建了一个插件,目前该插件的 url 是:localhost/player/?id=123
我想创建一个 url 重写,所以 url 看起来像:localhost/player/123
我尝试使用此规则:
RewriteRule ^player/(.*) player/?id=$1
但这行不通。每当我转到 localhost/player/123 时,我都会收到 wp page not found 页面。
尝试:
RewriteRule ^player/(.*)$ player/?id=$1