我有这种类型的url
http://123.123.123.123/~developers/cakephp/
它总是给我
404 Not Found The server can not find the requested page: 123.123.123.123/~developers/cakephp/ (port 80)
以前我的网址是
www.domain_name.com/cakephp
但是现在我的所有cakephp或Yii项目显示404页面没有找到。我已经打印在webrootindex.php文件,根index.php文件,但它不显示我的消息。
我的htaccess文件在根上
<IfModule mod_rewrite.c> RewriteEngine on RewriteRule ^$ app/webroot/ [L] RewriteRule (.*) app/webroot/$1 [L] </IfModule>
此问题是由于我的服务器设置造成的。我已经在新服务器上移动了我的代码,然后它就完美地工作了。因此,不要更改代码,请检查服务器访问设置。