I need to redirect incorrect pages to the 404 page, currently I'm redirecting to the homepage and I have this:
def thirdlevel
if something
if something else
render :template => "services/thirdlevel"
else
redirect_to "/"
end
else
redirect_to "/"
end
end