2017-09-08 31 views
0

我想使用我的引擎PLUTO子域名。 但是我不想讓子域名擁有兩個引擎文件。 我的引擎使用路由器文件和htaccess文件將所有鏈接重定向到此路由器文件。正確的文檔根與htaccess和子域名

問題: 當我使用子域名htaccess的文件搜索子域中的目錄路由器文件,而不是htaccess文件的目錄(這是在以前的文件夾)

RewriteEngine On 
RewriteBase/
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteRule^/pluto.router.php 

如何我告訴htaccess它應該重定向到htaccess文件夾中的pluto.router.php?或者: 如何找到/寫入htaccess的document_root?

編輯: 我想我不能寫http://www.example.com/pluto.router.php因爲我使用多個域。

回答

0

,如果你嘗試這樣的事情可能有幫助:

Redirect /olddirectory/oldfile.htmlhttp://example.com/newdirectory/newfile.html 

然後當然olddirectory /的oldfile應該被命名爲自己和同樣適用於newdirectory。