|
系统是FreeBSD,在根目录下,已经加上.htaccess了,
RewriteEngine on
RewriteCond $1 !^(index\.php|statics|xml|^(.*)\.swf)
RewriteRule ^(.*)$ /index.php/$1 [L]
空间是支持.htaccess的,可是现在访问http://example.com/module/,不管module是什么,都是显示首页,感觉它是把http://example.com/module/中的module当成一个目录来处理了,所以就都转向了默认的index(就是首页)。
而如果我访问http://example.com/index.php/module/就正常,在我本地win环境下是可以正常去index.php的 |
|