我有两个应用程序:
以下工作在某种程度上,即ember处理到' / example / path /'的流量,但它也处理其后的任何其他路由,例如' / example / path / pretty-wp -page':
Alias "/example/path" "/var/www/ember/app/dist"
问题是,我希望ember只处理到' / example / path /'和' / example / path / another-ember-route'和WordPress处理任何其他,例如' / example / path / pretty-wp-page'
我尝试了以下内容:
AliasMatch "/example/path(/|another\-ember\-route)" "/var/www/ember/app/dist"
无济于事。任何想法或建议?我已经筋疲力尽了我的技能组合的可能性,无法在apache文档中看到解决方案,Google也没有提供任何解决方案。
由于
答案 0 :(得分:0)
试试这个:
AliasMatch ^/example/path(?:/another-ember-route)?$ /var/www/ember/app/dist
这适用于" / example / path"和" / example / path / another-ember-route"仅
说明: