Ember / Ember-Cli通过Apache服务投掷404

问题描述 投票:3回答:2

当我尝试通过Apache提供我的ember应用程序时,我遇到了问题。 因为位置设置为“历史”而不是“哈希”,所以Apache正在尝试加载不存在的魔术余烬路径作为文件。 myapp.com/login会抛出404,因为没有login.html。

我已经做了一些淘汰,并且令人惊讶的是,这并没有太多让我相信没有多少人在apache上部署ember应用程序。

所以建议我编写Apache URL Rewrite规则,但是我试过的那个规则似乎没有用。

Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteRule ^(.*)$ index.html [L]

Options FollowSymLinks

    <IfModule mod_rewrite.c>
      RewriteEngine On
      RewriteBase /
      RewriteRule ^index\.html$ - [L]
      RewriteCond %{REQUEST_FILENAME} !-f
      RewriteCond %{REQUEST_FILENAME} !-d
      RewriteRule . /index.html [L]
    </IfModule>

不要工作。

除了回到“哈希”之外,有没有人知道该做什么?

问候,无能的人。

apache ember.js url-rewriting ember-cli
2个回答
4
投票

除了存在的文件之外,您需要将所有内容路由到索引:

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.html#$1 [L]

0
投票

如果您可以返回哈希,则可以将locationType设置为“hash”。

请查看下一个答案: https//stackoverflow.com/a/28630973/4425050

我有同样的问题,我修复它。

© www.soinside.com 2019 - 2024. All rights reserved.