Railsのrequest.fullpath だと param 以降も受け取ってしまうので、paramの値を使わない時の方法。

解決策

splitで邪魔なものをとる方法

request.fullpath.split("?")[0]

path を使う方法。こっちのほうがよさそう。

request.path

参考

[ruby on rails – request.fullpath with no parameters – Stack Overflow][1]