使用子目录配置.htaccess

时间:2019-03-27 20:56:40

标签: apache .htaccess mod-rewrite

我有Apache服务器,该服务器在/var/www/html/<angular_root>下运行Angular 6应用程序。我试图添加一个文件夹/var/www/html/admin/<angular_root>,但出现错误Failed to load resource: the server responded with a status of 404 (Not Found)。我使用以下配置添加了.htaccess文件:

我当前的Apache配置是:

<IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteBase /admin/
    Options +FollowSymLinks
    RewriteCond %{REQUEST_FILENAME} -s [OR]
    RewriteCond %{REQUEST_FILENAME} -l [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^.*$ - [NC,L]

    RewriteRule ^(.*) /index.html [NC,L]
</IfModule>

您知道如何解决此问题吗?

0 个答案:

没有答案