我有一个 html.erb 文件。代码看起来像:
<% if %>
<p>
Some text here
</p>
<%end%>
<% if %>
<p>
Some different text here
</p>
<%end%>
在 if 语句中,我需要一些东西来检查我所在页面的 url。假设地址是http://www.somesite.com/stuff/otherstuff和http://www.someothersite.com/what/stuff都是有效地址。我需要它,以便以第一个地址开头的站点在其页面上具有第一行文本,而以第二个地址开头的站点在页面上具有第二行文本。
知道如何检查 URL 路径并使其正常工作吗?