angglarはurlの中の〹を抜きます.

1520 ワード

1.クライアントに適した方法ですが、ページは更新できません.更新すると404.
(1)index.に追加する
<base href="/">
(2)ap.jsのconfigに、$locationProviderを注入し、追加する
.config(['$locationProvider',function($locationProvider){
     
  $locationProvider.html5Mode('true');
}])
 
2.サーバ端ソリューション(appheにrewriteモジュールがインストールされていることを確認する)
80>
    ServerName my-app

    DocumentRoot /path/to/app

    
        RewriteEngine on

        # Don't rewrite files or directories
        RewriteCond %{REQUEST_FILENAME} -f [OR]
        RewriteCond %{REQUEST_FILENAME} -d
        RewriteRule ^ - [L]

        # Rewrite everything else to index.html to allow html5 state links
        RewriteRule ^ index.html [L]
    
 
転載先:https://www.cnblogs.com/cynthia-wuqian/p/6958557.html