【发布时间】:2012-11-23 05:47:33
【问题描述】:
我有这个网址:
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>
【问题讨论】:
标签: apache codeigniter url-rewriting