我的前端是棱角分明的。我在角度使用HTML5模式路由。我已经配置了我的htaccess文件,用于将任何URL重定向到index.php,但它似乎无法正常工作。
以下是我的htaccess代码:
Options +FollowSymLinks
<ifModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !index
RewriteRule (.*) index.php/#/$1 [L]
</ifModule>
请帮忙。
答案 0 :(得分:0)
更改此行:
RewriteRule (.*) index.php/#/$1 [L]
由此:
RewriteRule ^(.*)$ /index.php?/#/$1 [L]