通过htaccess重定向自定义网址

时间:2013-11-23 06:13:38

标签: .htaccess redirect

我有自己的域名:

  

http://cesarferreira.com

我想做

  

http://cesarferreira.com/github

指向

  

https://github.com/cesarferreira

不必为我拥有的每个页面(facebook,twitter,pinterest等)创建一个带有index.html的/ github /文件夹,其中包含重定向

有没有像htaccess catchig * .com / github这样的方法并指向给定的静态网址?

非常感谢

3 个答案:

答案 0 :(得分:3)

如果您的文档根目录服务 -

http://cesarferreira.com

您可以在.htaccess中添加重定向 - < - p>

Redirect /github https://github.com/cesarferreira

答案 1 :(得分:1)

查看网址重写器“http://httpd.apache.org/docs/2.0/misc/rewriteguide.html”。这应该能够做你想要的一切,甚至更多。 只要在apache中启用它,您就可以在.htaccess文件中使用它。

答案 2 :(得分:1)

您可以使用mod_alias:

Redirect 301 /github https://github.com/cesarferreira

或者如果你只想让github只指向文件夹:

RedirectMatch 301 ^/github https://github.com/cesarferreira

您可以将其放在文档根目录的htaccess文件中。