2010-04-01 48 views
0

以下是我想要做的: joomla在1個子目錄中,wordpress在另一個子目錄中。WordPress的和Joomla的固定鏈接加上域名重定向到Zeus上的特定子目錄

mysite.com引導到的Joomla目錄

mysite.com/blog給WordPress的。

我也想用seo友好的永久鏈接。

我使用Zeus Linux與Joomla 1.5和wordpress 2.9.2共享主機,並且在尋找合適的重寫腳本時遇到了很多麻煩。任何幫助將非常感謝!謝謝。

回答

1

以下應該做的伎倆。它基於examples (pdf)文檔,我沒有測試過它。宙斯服務器開發已經停止在2010年

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

東西線的OP明確指出他使用宙斯 - 而不是Apache。 .htaccess是無用的,他需要一個rewrite.script – Fraser 2014-01-31 16:03:01

+0

@Fraser看到我的更新,當時我完全錯過了。 :) – fuxia 2014-01-31 16:26:45

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