.htaccess链接缩短脚本文件

时间:2018-01-23 08:31:43

标签: php .htaccess

我正在开发一个" Link Shorter Script"用PHP。我的短链接是这样的:/goto.php?id=xxxxx。我想要像http://example.com/xxxxxx

这样的短链接

我可以通过.htaccess文件吗?

1 个答案:

答案 0 :(得分:1)

是的,这正是可以使用.htaccess中RewriteRule的那种东西。您可以通过以下几种方式查找numerous times on this siteon Google,但以下是一个示例:

RewriteRule ^([^/]+)/?$ /goto.php?id=$1 [L]

这将匹配任何可选的正斜杠,例如somesite.com/a1b2c3somesite.com/thisisalongstringfortesting/,但不匹配somesite.com/a/longer/path/

thorough documentation有可用的示例,这是您可能希望在下一步看到的好地方。