2

我克隆了聚合物入门套件,它工作得非常好。

所以在占位符路由中有一个名为 http://localhost:5000/users/Rob的页面。如果我通过单击 rob 链接从用户页面移动到 Rob 页面,则上述 url 有效。

但是如果我直接在浏览器上粘贴http://localhost:5000/users/Rob并按回车,它就不起作用。

我假设上述问题可以通过使用 htaccess 来解决。但无法弄清楚如何。

下面是我的 .htaccess 代码

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* /index.html [L,R=302]
4

2 回答 2

0

删除[L,R=302]对我有用!

.ht 访问:

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* /

索引.html:

<app-route
route="{{route}}"
pattern="/users/:id"
data="{{usersRouteData}}"
tail="{{usersSubroute}}"
active="{{usersActive}}"
></app-route>
于 2017-11-17T11:45:50.323 回答
0

尝试http://localhost:5000/#!/users/Rob

#!链接中的标签和感叹号作为文件夹?

于 2016-01-27T19:28:55.720 回答