我的网址有很大的问题。我知道如何删除 index.php 表单 url,但问题是我不知道从 url 中删除“?act =”。
我现在的链接是http://localhost/doctrine/public/?act=test我想像http://localhost/doctrine/public/test一样创建它。
我当前的.htaccess 文件放在公用文件夹中:
<IfModule mod_rewrite.c>
RewriteEngine On
# Removes index.php from ExpressionEngine URLs
RewriteCond $1 !\.(gif|jpe?g|png)$ [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
我需要帮助如何做到这一点。