我正在开发一个" Link Shorter Script"用PHP。我的短链接是这样的:/goto.php?id=xxxxx
。我想要像http://example.com/xxxxxx
我可以通过.htaccess文件吗?
答案 0 :(得分:1)
是的,这正是可以使用.htaccess中RewriteRule
的那种东西。您可以通过以下几种方式查找numerous times on this site和on Google,但以下是一个示例:
RewriteRule ^([^/]+)/?$ /goto.php?id=$1 [L]
这将匹配任何可选的正斜杠,例如somesite.com/a1b2c3
或somesite.com/thisisalongstringfortesting/
,但不匹配somesite.com/a/longer/path/
。
thorough documentation有可用的示例,这是您可能希望在下一步看到的好地方。