首页 > 解决方案 > 重定向基地+短网址

问题描述

我正在尝试做一个简单的自定义 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]

标签: .htaccessurl-redirectionurl-shortener

解决方案


你可以用这个

RewriteEngine on

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

推荐阅读