我网站上的网页,网址为“http://example.com/image/33434”。
要在社交网站上分享此内容,我想将其缩小。我已经有一个域名,如果你输入“http://exp.co/image/33434”它会重定向你,但我希望这个简短的网址是“http://exp.co/i/33434”
可以使用.htaccess文件吗?
谢谢,Josh。
答案 0 :(得分:0)
我猜..或者带有符号链接。
RewriteEngine On
RewriteBase /i/
RewriteRule ^([^\.].*)$ /image/$0 [L]
答案 1 :(得分:0)
如果example.com和exp.co是同一应用程序中的不同主机,请执行以下操作: -
RewriteCond %{HTTP_HOST} ^exp\.co$ [NC]
RewriteRule ^i/([^/]+)/?$ http://example.com/image/$1 [NC,R=301,L]
如果它们是不同的应用程序,那么您只需要: -
RewriteRule ^i/([^/]+)/?$ http://example.com/image/$1 [NC,R=301,L]