无论我的网址是什么,我都希望指向index.php。我在Angularjs上指定了如何处理URL。我可以将像example.com/page这样的URL定向到index.php,但是我不能使用我在互联网上找到的htaccess代码将像example.com/profiles/user1这样的URL定向到index.php。当URL中有第二个斜杠时,我的代码不起作用。我该如何解决这个问题?
我的htaccess代码;
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule ^ index.php [L]
我事先感谢你的帮助