我尝试使用以下代码将任何页面重定向到本地主机中的索引页面,但不知何故它不起作用。
<IfModule mod_rewrite.c>
Options +FollowSymLinks
Options +Indexes
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?url=$1 [L]
</IfModule>
请帮助我重定向到我的网站索引页面。