htaccess URL刷新问题

时间:2019-05-22 15:42:09

标签: .htaccess url

我在以下位置部署了一个基于角度的应用程序:

public_html/events/

当我们从父网站链接打开时,它可以很好地打开。但是在刷新事件链接后,它说找不到页面。因此,我在.htaccess文件中添加了以下代码:

RewriteEngine On
# If an existing asset or directory is requested go to it as it is
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -f [OR]
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -d
RewriteRule ^ - [L]
# If the requested resource doesn't exist, use index.html
RewriteRule ^ /events/

添加上述代码后,效果很好。

但是,其他URL不能正常打开。其他URL重定向到事件 URL。

0 个答案:

没有答案