我尝试使用以下代码将任何页面重定向到localhost中的索引页面但不知何故它无法正常工作。
<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>
请帮我重定向到我的网站索引页。
答案 0 :(得分:0)
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
IndexIgnore *
</IfModule>
请确保在httpd.conf文件中激活mod_rewrite模块,如:
LoadModule rewrite_module modules/mod_rewrite.so