路由我有這個在我的代碼...角2 - 與路徑作爲參數和BrowserSync
@RouteConfig([
{path: "/me", name: "Me", component: MeComponent, useAsDefault: true},
{path: "/me/edit", name: "EditProfile", component: EditProfileComponent},
{path: "/people/:group", name: "People", component: PeopleComponent}
])
但爲了使像/人/學校,我需要設置在browserSync路線。我的第一個嘗試是一個通配符,像這樣:
browserSync.init({
server: {
baseDir: "./",
routes: {
"/me": "index.html",
"/me/edit" : "index.html",
"/people/*" : "index.html"
}
}
它不工作。有關如何配置browserSync以使用動態生成的url路徑的任何建議?
ty!
TY,克里斯!我將檢查重寫規則:)沒有計劃再使用散列 –
OP正試圖在Browsersync下處理HTML5路由。 Browsersync rewriteRules用於html _content_,_not_ URL重寫。 OP需要改爲使用Browsersync中間件。見下面的答案。 – MattEvansDev