我有这个网址:
http://localhost:85/WebCamClone/Home
但它只会像这样加载:
http://localhost:85/WebCamClone/index.php/Home
我试图将 htaccess 规则放在这样的一个:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
但它没有用。我还应该尝试什么?
这是我的 apache 配置文件中的内容:
<Directory />
Options FollowSymLinks
AllowOverride all
Order deny,allow
Deny from all
</Directory>