0

我在这里托管了我的新网站http://cvspforcomval.site90.net/这是一个免费的托管网站。问题是我看不到幻灯片中的图片,当我进入导航链接时出现错误。

我已将默认 webroot/index.php 更改为:

if (!defined('ROOT')) {
    define('ROOT', DS.'home'.DS.'a3503999');
}

if (!defined('APP_DIR')) {
    define('APP_DIR', 'app');

我的目录是这样的 /root/ public_html/ <---webroot app/ lib/

我只是想知道使用免费托管网站是否会影响错误。或者我只是错过了一些东西。

<---编辑添加在下面---> 在我的共享主机站点中。我以这种方式设置文件夹

/app
/public_html   <---webrooot
/lib

我的 public_html 中有默认的 htaccess,即

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>

我怀疑我需要更改我的.htaccess。我还没解决

4

1 回答 1

0

我收到页面未找到错误,这是由于锚点造成的。您没有使用正确的 ctp 链接。您必须将锚点创建为

$this->Html->link(__'My Page',array('controller'=>'Home','action'=>'name_of_action'));
于 2013-10-29T18:26:37.600 回答