我正在使用这个 to_param
def to_param
[id, [first_name.parameterize,last_name.parameterize].join("_")].join("-")
end
生成一个看起来像的地址
http://www.example.com/users/34-joe_smith
但是如果我将地址更改为
http://www.example.com/users/34-joe_notsmith
它仍然将我定向到 id 为 34 的用户。
如何强制它转到 404 页面或 root_path?