单页应用程序的Apache2配置

时间:2017-10-11 19:20:07

标签: javascript html apache .htaccess single-page-application

我正在尝试使用Apache2运行我的单页应用程序。这是我的文件结构:

  

静态
   - js
   - - main.js
   - css
  dashboard.html
  的index.html

现在我正在尝试使用重写规则编写.htaccess文件。

example.com/ -> /index.html
example.com/dashboard -> /dashboard.html
example.com/dashboard/info -> /dashboard.html
example.com/dashboard/... -> /dashboard.html
example.com/static/js/main.js -> /static/js/main.js

我不想使用重定向,只是重写URL。 我需要在文件.htaccess中放入什么。 非常感谢答案。

问候
卢卡斯

解决方案

我自己想出了解决方案: RewriteEngine On RewriteRule ^dashboard$ /dashboard.html [PT] RewriteRule ^dashboard/$ /dashboard.html [PT] RewriteRule ^dashboard/(.*)$ /dashboard.html [PT]

0 个答案:

没有答案