重定向基础+短网址

时间:2018-11-08 22:50:37

标签: .htaccess url-redirection url-shortener

我正在尝试做一个简单的自定义网址缩写。

我有一个域“ 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]

1 个答案:

答案 0 :(得分:0)

您可以使用

RewriteEngine on

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