0

我尝试使用以下代码将任何页面重定向到本地主机中的索引页面,但不知何故它不起作用。

<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>

请帮助我重定向到我的网站索引页面。

4

1 回答 1

0
<IfModule mod_rewrite.c>
   RewriteEngine On
   RewriteCond %{REQUEST_FILENAME} !-f
   RewriteCond %{REQUEST_FILENAME} !-d
   RewriteRule ^(.*)$ index.php/$1 [L]
   IndexIgnore *
</IfModule>

Please make sure mod_rewrite module active in your httpd.conf file like:

LoadModule rewrite_module modules/mod_rewrite.so
于 2012-12-06T05:56:37.280 回答