我正在尝试从 url 中删除 index.php。我使用 .htaccess 文件删除了 this.but 它正在重定向到 xampp 主页。
这里我的 .htaccess 代码是
RewriteBase 上的 RewriteEngine /
# Removes index.php from ExpressionEngine URLs
RewriteCond %{THE_REQUEST} ^GET.*index\.php [NC]
RewriteCond %{REQUEST_URI} !/system/.* [NC]
RewriteRule (.*?)index\.php/*(.*) /$1$2 [R=301,NE,L]
# Directs all EE web requests through the site index file
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [L]
提前致谢