我想在表格
上找到一个网址mypage.com/ID/Some-random-text
从
加载其内容mypage.com/loadstuff.php?id=ID
有人能说明这是怎么做到的吗?
我查看了不同的SEO优化网站,但未能弄清楚如何做这个特殊的技巧。
答案 0 :(得分:1)
您可以使用apache httpd URL重写。
RewriteRule ^/(.*)/.*$ /loadstuff.php?id=$1
请注意,此示例未经过测试。您可以在https://httpd.apache.org/docs/current/rewrite/intro.html
找到更多信息其他网络服务器可能有类似的选择。