重定向基础 + 短 Url

Redirect Base + Short Url

我正在尝试做一个简单的自定义 url shortner。

我有这个域 "a.st",我需要重定向到:"astrit.co"

如何创建重定向 "a.st/234" >> "astrit.co/?p=234"

RewriteEngine on
RewriteCond %{HTTP_HOST} a\.st [NC]
RewriteCond %{REQUEST_URI} ^/$
Rewriterule ^(.*)$ https://astrit.co/ [L,R=301]

你可以使用这个

RewriteEngine on

RewriteCond %{HTTP_HOST} ^a\.st$ [NC]
RewriteRule ^(234) http://astrit.co/?p= [L,R]