Thread Starter
Leon
(@leon0824)
Relative or dynamic site url possible?
裡面的方法是可用的,程式碼原始出處是:
http://blog.zerofractal.com/working-with-wordpress-over-svn/
不過需注意以下幾點:
1.
$currentpath = preg_replace('/\/wp.+/','',$currentpath);
內的wp需置換成WordPress的網址路徑,像我是裝在www的根目錄就要改成:
$currentpath = preg_replace('/\/.+/','',$currentpath);
2.
wp-config.php內不可再定義
define( 'WP_HOME', 'http://wordpress.local' );
define( 'WP_SITEURL', 'http://wordpress.local' );
有的話把它們註解掉。
3.
如果有裝到會動到hostname的Plugin,像Dynamic Hostname這類的,把它們關掉。
以上打完收工。
Thread Starter
Leon
(@leon0824)
繼續自問自答。
有人遇到同樣的問題,並且有解法:
Relative or dynamic site url possible?
不過還沒試過。
另外有個Plugin Soli,功能很多,Realtive URL也是其中之一。
https://roots.io/plugins/soil/
不過也同樣地,還沒試過。
Thread Starter
Leon
(@leon0824)