|
我是个新手。跟着教程完成了blog这个例子的view control model的例子。
在xp环境下运行都正常。但是到了win7的环境下ci就会报错,显示出blogmodel这个类的源文件,同时说这个类找不到。
有人遇到过类似情况么,如何解决?
我用的是xamp环境。
apache配置虚拟主机如下
<VirtualHost *:80>
ServerName ci
DocumentRoot "/codeCenter/ci"
<Directory "/codeCenter/ci">
AddType text/html .ssi
AddOutputFilterByType INCLUDES;DEFLATE text/html
Options FollowSymLinks Includes IncludesNOEXEC Indexes
DirectoryIndex index.html index.htm index.php index.shtml
AllowOverride None
Order Deny,Allow
Allow from all
RewriteEngine on
</Directory>
</VirtualHost> |
|