21306 Posts in 5736 Topics by 2603 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 735 Views |
-
Change domain URL

12 November 2010 at 6:07am
Simple and newbie question, but I can't find any solution. We have a site in a virtual host http://one.yyy.com, we change the nameserver to http://two.yyy.com.
But all the link inside silverstripe pages points to http://one.yyy.com/...What's the problem?
I check inside all file and inside database for references about old domain and I found only in the table SiteTree_versions.What can I do?
-
Re: Change domain URL

12 November 2010 at 6:17am
Did you try flushing the cache?
Eg. yoursite.tld/dev/build?flush=allor by appending ?flush=1 to individual page-urls?
-
Re: Change domain URL

12 November 2010 at 6:30am
I've try but when I go to a new domain http://two.yyy.com/dev/build?flush=all silverstripe redirect me always on a login page. If I logon I return on http://one.yyy.com/dev/build?flush=all.
No way.
-
Re: Change domain URL

12 November 2010 at 9:56pm Last edited: 12 November 2010 9:57pm
Standard .htaccess
#=============================================
<Files *.ss>
Order deny,allow
Deny from all
Allow from 127.0.0.1
</Files><IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /rdRewriteCond %{REQUEST_URI} !(\.gif$)|(\.jpg$)|(\.png$)|(\.css$)|(\.js$)
RewriteCond %{REQUEST_URI} ^(.*)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule .* sapphire/main.php?url=%1&%{QUERY_STRING} [L]
</IfModule>
### SILVERSTRIPE END ###
#==============================================
| 735 Views | ||
|
Page:
1
|
Go to Top |


