Wordpress和Joomla Permalinks加上域重定向到Zeus上的特定子目录

时间:2010-04-01 02:04:40

标签: wordpress rewrite joomla1.5 permalinks zeus

这是我正在尝试做的事情: joomla在1个子目录中,wordpress在另一个子目录中。

mysite.com指向joomla目录

mysite.com/blog提供了wordpress。

我还想使用seo友好永久链接。

我正在使用Zeus Linux与Joomla 1.5和wordpress 2.9.2共享托管,并且在查找合适的重写脚本时遇到了很多麻烦。任何帮助将非常感谢!谢谢。

2 个答案:

答案 0 :(得分:1)

以下应该可以解决问题。它基于examples (pdf)文档,我还没有测试过。 Zeus服务器开发已于2010年停止。

match URL into $ with ^blog/*$
if matched then
   set URL = blog/index.php
endif

答案 1 :(得分:0)

您需要以下内容

#Joomla
match URL into $ with (/content/|/component/)              
if matched then set URL = /index.php
#Wordpress
map path into SCRATCH:path from %{URL}  
look for file at %{SCRATCH:path}  
if exists then goto END  
look for dir at %{SCRATCH:path}  
if exists then goto END  
# FIX FOR LOGIN
match URL into $ with ^/blog/wp-.*$  
if matched then goto END  
# FIX FOR SEARCH
match URL into $ with ^/blog/(.*)  
set URL = /blog/index.php/$1