我在托管空间的根目录上安装了Joomla 1.5.26。我想在一个子目录中安装一个wordpress站点。
所以我在根目录中编辑了.htaccess文件,在RewriteEngine On后立即添加这两行:
RewriteCond %{REQUEST_URI} ^/subdirectory/
RewriteRule ^(.*)$ $1 [L]
我还编辑了在php开启标记后添加这两行的functions.php文件(显然使用了我的域名和子目录名称):
update_option('siteurl', 'http://www.example.com/subdirectory');
update_option('home', 'http://www.example.com/subdirectory');
我已使用“http://www.example.com/subdirectory”更改了mysql数据库中wp_options表中的“home”和“siteurl”字段值。
当我尝试访问子目录时,我收到HTTP 500错误。
答案 0 :(得分:0)
我不认为joomla中有任何子目录可用的直接访问链接。