Tagged Questions
0
votes
0answers
39 views
domain and subdomain working with drupal
I have a domain let its called www.example.com and I have a Drupal instance of this as a subdomain called dev.example.com. example.com is place directly at the root of public_html while the Drupal ...
0
votes
0answers
23 views
redirection time duration [closed]
I am using a seo function to generate clean urls :
$link = BASEURL.'/myword/'.$details['id'].'_'.SEO(clean(str_replace(' ','-',$details['title']))).$plist;
in my php file there's lines to do the ...
0
votes
2answers
46 views
Moving a site that was already moved - how should I deal with rewrites and redirects?
I have a site that used to have all of its pages hosted on a single domain (e.g. mydomain.com). At some point, a portion of the site's content was moved to another domain and the folks who did the ...
2
votes
2answers
206 views
Tool to generate list of redirections (sitemap for .htaccess)
Is there any good tool (preferably for Ubuntu), that can help me generate a list of URLs used on a site?
I'm building new version of some site, but I don't want to get 404 errors for the old pages. ...
5
votes
2answers
2k views
How Do I Setup 301 Redirects in Google Apps Site?
I have just moved a website from a shared host to a Google Apps site.
Is there a way I can setup 301 redirects on my Google Apps site so that old links (with a different URL) can be 301 redirected to ...
1
vote
2answers
46 views
rewrite url (redirection)
How to rewrite url:
www.domain.com
domain.com
to
www.domain.com/sell.html
Were sell.html is already rewritten I need some kind of redirection.
3
votes
1answer
403 views
What does the '^' mean in “rewrite ^ http://test.com permanent;”
I found some configuration of nginx contains:
if($args ^~ post=140) {
rewrite ^ http://test.com/ permanent;
}
What does the ^ mean in rewrite ^ http://test.com/ permanent?
0
votes
1answer
46 views
mod_rewrite change . to -
I'm moving my site and the URL structure has changed because of the new CMS. The urls would be similar to http://www.example.com/my.products.htm on the new site we are changing the URLs to this ...