我有一些使用索引控制器的重定向和 url
像这样的绝对或相对:www.domain/index/contact 或只是 /index/contact
我可以用 htaccess 去掉索引部分,这样我就可以看到 www.domain/contact我只想要这个用于索引控制器
编辑
这些是我已经拥有的规则
Options +FollowSymlinks
RewriteEngine On
Options All -Indexes
IndexIgnore *
DirectoryIndex index.php
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteRule ^(.*)$ index.php/?$1 [L,QSA]
在此先感谢,丰富