我正在使用启用扩展的 PHP 5.3.5htaccess
开发 Wamp。
我面临的问题是我需要这样的东西http://localhost/abc/aboutus
。
现在实际的 URL 是这样的http://localhost/abc/index.php?aboutus
我尝试了以下代码:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?/$1 [L]
并尝试使用它,http://localhost/abc/aboutus
但它不起作用。但是当我尝试它时http://localhost/abc/?aboutus
。
它工作正常,但我实际上想?
从 URL 中删除。谁能告诉我我错在哪里?