无法在正确的 URL 中打开 Joomla 文章
问题:我的文章有正确的网址:例如,newsite.com/article。 但是,通过单击一篇文章,我会得到一篇空文章。 我可以看到我的侧边栏。
我将 Joomla 安装移动到服务器中的另一个文件夹中。 我想将我的域从 OldSite.com 更改为 NewSite.com。
我也不确定是否需要更改数据库。
我最近在 NewSite.com 上的 configuration.php 是从 OldSite.com 移过来的。
<?php
class JConfig {
var $offline = '1';
var $editor = 'jce';
var $list_limit = '20';
var $helpurl = 'http://help.joomla.org';
var $debug = '0';
var $debug_lang = '0';
var $sef = '1';
var $sef_rewrite = '1';
var $sef_suffix = '0';
var $feed_limit = '10';
var $secret = '----------------';
var $gzip = '0';
var $error_reporting = '7';
var $xmlrpc_server = '0';
var $log_path = '/home/masi/public_html/NewSite/logs'; // I added this
var $tmp_path = '/home/masi/public_html/NewSite/tmp'; // I added this
var $live_site = 'http://www.NewSite.com/'; // I added this
var $offset = '0';
var $caching = '0';
var $cachetime = '15';
var $cache_handler = 'file';
var $memcache_settings = array();
var $ftp_enable = '0';
var $ftp_host = '127.0.0.1';
var $ftp_port = '21';
var $ftp_user = 'admin';
var $ftp_pass = '------------'; // hidden now for security
var $ftp_root = '';
var $dbtype = 'mysql';
var $host = 'localhost';
var $user = 'masi_jml02';
var $db = 'masi_jml02';
var $dbprefix = '';
var $mailer = 'mail';
var $mailfrom = '[email protected]';
var $fromname = '';
var $sendmail = '/usr/sbin/sendmail';
var $smtpauth = '1';
var $smtpuser = '';
var $smtppass = '';
var $smtphost = 'localhost';
var $MetaAuthor = '0';
var $MetaTitle = '1';
var $lifetime = '15';
var $session_handler = 'database';
var $password = '--------------'; // hidden now for security
var $sitename = '--------------'; // hidden now for security
var $MetaDesc = '';
var $MetaKeys = '';
var $offline_message = 'This site is down for maintenance. Please check back again soon.';
}
?>
我对上面的代码添加了注释,以指示在移动安装文件夹后更改的行。
我的 index.php 位于 public_html/NewSite/templates/Theme/
<?php
// no direct access
defined( '_JEXEC' ) or die( 'Restricted access' );
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" >
<head>
<jdoc:include type="head" />
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/system/css/system.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $this->baseurl;?>/templates/system/css/general.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $this->baseurl;?>/templates/<?php echo $this->template ?>/css/customize.css" type="text/css" />
<script type="text/javascript" src="<?php echo $this->baseurl;?>/templates/<?php echo $this->template ?>/js/global.js"></script>
<?php if($this->countModules('left') <= 0 ) : ?>
<?php endif; ?>
<?php $div_wrap = ($this->countModules('left')) ? 'modulewrap' : 'modulewrap_wide'; ?>
<?php $div_right = ($this->countModules('user4')) ? 'right' : 'right_wide'; ?>
<?php $div_left = ($this->countModules('right')) ? 'left' : 'left_wide'; ?>
</head><body>
<div id="outerwrap">
<div id="header">
<?php if($this->countModules('user1')) : ?>
<jdoc:include type="modules" name="user1" style="xhtml" />
<?php else: ?>
<h1><a href="<?php echo $mainframe->getCfg('live_site');?>" title="<?php echo $mainframe->getCfg('sitename');?>"><?php echo $mainframe->getCfg('sitename');?></a></h1>
<?php endif; ?>
</div>
<!-- 3bar column -->
<?php if ($this->countModules('top')): ?>
<div id="top">
<jdoc:include type="modules" name="top" style="xhtml" />
</div>
<?php endif; ?>
<!-- End 3bar column -->
<div class="clear"></div>
<div id="wrapper">
<!-- Start leftcol -->
<?php if($this->countModules('left')) : ?>
<div id="leftcol">
<jdoc:include type="modules" name="left" style="xhtml" />
</div>
<!-- END leftcol -->
<?php endif; ?>
<!-- Right column -->
<?php if ($this->countModules('user3')): ?>
<div id="user3">
<jdoc:include type="modules" name="user3" style="xhtml" />
</div>
<?php endif; ?>
<!-- End Right column -->
<div id="mainbody">
<div class="inside">
<jdoc:include type="message" />
<jdoc:include type="component" />
</div>
<!-- END INSIDE -->
</div>
<!-- END MAINBODY -->
<div class="clear"></div>
</div>
<!--END WRAP-->
</div>
<!--END WRAPPER-->
<div class="clear"></div>
<div id="bottombar"></div>
</div>
<!--END OUTERWRAP-->
<div class="designer">
<jdoc:include type="modules" name="footer" style="raw" /></div>
</body>
</html>
Problem: My articles have the right urls: for example, newsite.com/article. However, by clicking an article I get an empty article. I can see my sidebar.
I moved my Joomla installation to a different folder in my server.
I want to change my domain from OldSite.com to NewSite.com.
I am not sure whether I need to change the database or not too.
My recent configuration.php at NewSite.com which was moved from OldSite.com.
<?php
class JConfig {
var $offline = '1';
var $editor = 'jce';
var $list_limit = '20';
var $helpurl = 'http://help.joomla.org';
var $debug = '0';
var $debug_lang = '0';
var $sef = '1';
var $sef_rewrite = '1';
var $sef_suffix = '0';
var $feed_limit = '10';
var $secret = '----------------';
var $gzip = '0';
var $error_reporting = '7';
var $xmlrpc_server = '0';
var $log_path = '/home/masi/public_html/NewSite/logs'; // I added this
var $tmp_path = '/home/masi/public_html/NewSite/tmp'; // I added this
var $live_site = 'http://www.NewSite.com/'; // I added this
var $offset = '0';
var $caching = '0';
var $cachetime = '15';
var $cache_handler = 'file';
var $memcache_settings = array();
var $ftp_enable = '0';
var $ftp_host = '127.0.0.1';
var $ftp_port = '21';
var $ftp_user = 'admin';
var $ftp_pass = '------------'; // hidden now for security
var $ftp_root = '';
var $dbtype = 'mysql';
var $host = 'localhost';
var $user = 'masi_jml02';
var $db = 'masi_jml02';
var $dbprefix = '';
var $mailer = 'mail';
var $mailfrom = '[email protected]';
var $fromname = '';
var $sendmail = '/usr/sbin/sendmail';
var $smtpauth = '1';
var $smtpuser = '';
var $smtppass = '';
var $smtphost = 'localhost';
var $MetaAuthor = '0';
var $MetaTitle = '1';
var $lifetime = '15';
var $session_handler = 'database';
var $password = '--------------'; // hidden now for security
var $sitename = '--------------'; // hidden now for security
var $MetaDesc = '';
var $MetaKeys = '';
var $offline_message = 'This site is down for maintenance. Please check back again soon.';
}
?>
I put comments to the above code to indicates rows which I changed after I moved the installation folder.
My index.php at public_html/NewSite/templates/Theme/
<?php
// no direct access
defined( '_JEXEC' ) or die( 'Restricted access' );
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" >
<head>
<jdoc:include type="head" />
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/system/css/system.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $this->baseurl;?>/templates/system/css/general.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $this->baseurl;?>/templates/<?php echo $this->template ?>/css/customize.css" type="text/css" />
<script type="text/javascript" src="<?php echo $this->baseurl;?>/templates/<?php echo $this->template ?>/js/global.js"></script>
<?php if($this->countModules('left') <= 0 ) : ?>
<?php endif; ?>
<?php $div_wrap = ($this->countModules('left')) ? 'modulewrap' : 'modulewrap_wide'; ?>
<?php $div_right = ($this->countModules('user4')) ? 'right' : 'right_wide'; ?>
<?php $div_left = ($this->countModules('right')) ? 'left' : 'left_wide'; ?>
</head><body>
<div id="outerwrap">
<div id="header">
<?php if($this->countModules('user1')) : ?>
<jdoc:include type="modules" name="user1" style="xhtml" />
<?php else: ?>
<h1><a href="<?php echo $mainframe->getCfg('live_site');?>" title="<?php echo $mainframe->getCfg('sitename');?>"><?php echo $mainframe->getCfg('sitename');?></a></h1>
<?php endif; ?>
</div>
<!-- 3bar column -->
<?php if ($this->countModules('top')): ?>
<div id="top">
<jdoc:include type="modules" name="top" style="xhtml" />
</div>
<?php endif; ?>
<!-- End 3bar column -->
<div class="clear"></div>
<div id="wrapper">
<!-- Start leftcol -->
<?php if($this->countModules('left')) : ?>
<div id="leftcol">
<jdoc:include type="modules" name="left" style="xhtml" />
</div>
<!-- END leftcol -->
<?php endif; ?>
<!-- Right column -->
<?php if ($this->countModules('user3')): ?>
<div id="user3">
<jdoc:include type="modules" name="user3" style="xhtml" />
</div>
<?php endif; ?>
<!-- End Right column -->
<div id="mainbody">
<div class="inside">
<jdoc:include type="message" />
<jdoc:include type="component" />
</div>
<!-- END INSIDE -->
</div>
<!-- END MAINBODY -->
<div class="clear"></div>
</div>
<!--END WRAP-->
</div>
<!--END WRAPPER-->
<div class="clear"></div>
<div id="bottombar"></div>
</div>
<!--END OUTERWRAP-->
<div class="designer">
<jdoc:include type="modules" name="footer" style="raw" /></div>
</body>
</html>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
好的...
ok...
我的站点配置为使用 mod_rewrite 但没有可用的 .htaccess 文件。
我禁用了 mod_rewrite,链接现在可以使用。
My site was configured to use mod_rewrite but there was no .htaccess file available.
I disabled the mod_rewrite, and the links now work.
如果您的新网站位于网络服务器根目录下的子文件夹中,只需检查 .htaccess 文件中的
RewriteBase
指令。 将RewriteBase /
更新为RewriteBase /subfolder/
正如我所看到的,您网站的根目录很可能是
public_html
目录,而实际网站位于NewSite
目录中。 因此,请尝试将RewriteBase /
替换为RewriteBase /NewSite/
(尾部斜杠是必需的)。If youк new website is located in subfolder under web-server's root, just check
RewriteBase
directive in .htaccess file. UpdateRewriteBase /
toRewriteBase /subfolder/
As I can see it is higly possible that your site's root is
public_html
directory while actual website is located inNewSite
directory. So try to replaceRewriteBase /
toRewriteBase /NewSite/
(trailing slash is mandatory).