2

我的网站上有一个 CodeIgniter 说 abc.com 。我已将全部内容复制到同一站点的子文件夹中,例如 abc.com/test 。但我无法使用 abc.com/test 访问该站点。谁能在这方面帮助我

谢谢

4

2 回答 2

1

根 htaccess

RewriteEngine on 
RewriteBase / 
RewriteCond $1 !^(index\.php|lib|robots\.txt|test) 
RewriteRule ^(.*)$ index.php/$1 [L]
于 2012-12-25T10:23:58.703 回答
0

在一切之前,您应该检查您是否在配置文件中更改了 codeginiter 基本 url。您的新基本网址类似于http://abc.com/test/ 并记住在 test/ 后添加斜杠

于 2012-12-25T16:42:08.000 回答