我在这里托管了我的新网站http://cvspforcomval.site90.net/,这是一个免费托管网站。问题是我无法在幻灯片中看到图片,当我进入导航链接时出现错误。
我已将默认的webroot / index.php更改为:
if (!defined('ROOT')) {
define('ROOT', DS.'home'.DS.'a3503999');
}
if (!defined('APP_DIR')) {
define('APP_DIR', 'app');
我的目录是这样的 /根/ public_html /< --- webroot 应用程序/ 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。我还没有解决它
答案 0 :(得分:0)
我收到了因锚点而导致的页面未找到错误。您没有使用正确的ctp链接。您必须将锚点创建为
$this->Html->link(__'My Page',array('controller'=>'Home','action'=>'name_of_action'));