我正在使用 URL 缩短器,我想要以下内容:
从http://domain.com/ld541as2重定向到http://www.newsite.com/login-ld541as2.html
有很多可能的 URL,但我猜有可能用 1 条规则来做到这一点?
你们中的任何人都知道该怎么做吗?
谢谢你的帮助
我正在使用 URL 缩短器,我想要以下内容:
从http://domain.com/ld541as2重定向到http://www.newsite.com/login-ld541as2.html
有很多可能的 URL,但我猜有可能用 1 条规则来做到这一点?
你们中的任何人都知道该怎么做吗?
谢谢你的帮助
通过启用 mod_rewrite 和 .htaccess httpd.conf
,然后将此代码放在您.htaccess
的DOCUMENT_ROOT
目录下:
Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^/]+)/?$ /login-$1.html [L,R]
PS:如果您不想要完全(外部)重定向,请R
从上述规则中删除标志。