我正在从 Wordpress 迁移到自定义编码内容管理系统,需要帮助使用 htaccess 转换旧 URL。
我有超过 2000 多篇具有以下 URL 结构的旧文章:
www.site.com/ID/post-title/
我需要将每个帖子重定向到使用帖子 ID 的自定义脚本:
www.site.com/post.php?id=ID
任何帮助是极大的赞赏。
你可以试试这个:
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} ^/([^/]+)/? [NC]
RewriteRule .* post.php?id=%1 [L,QSA]
它将静默映射:
http://www.site.com/ID/post-title/
对此:
http://www.site.com/post.php?id=ID
whereID
不是固定字符串,而是作为id
值传递给脚本的变量。