Questions tagged [seo]

SEO is search engine optimization, altering a web site so as to improve its ranking in search engines.

SEO is search engine optimization, altering a web site so as to improve its ranking in search engines.

97 questions
0
votes
1 answer

Apache directive to force https

I would like to force all visitors to access my website on https:// Does this look standard and SEO friendly? RewriteEngine on RewriteCond %{HTTPS} !=on RewriteRule ^(.*)$ https://%{HTTP_HOST}$1…
Pete D
  • 101
  • 1
0
votes
2 answers

Change webserver's IP address depending on the hosted domain TLD

I'm looking to build a CMS to manage several websites. Some will have a Spanish content and will be accessible via the domain domain.es, others will be in french, via the domain domain.fr, etc. Since they will all sit on the same machine, this means…
pixeline
  • 658
  • 3
  • 13
  • 29
0
votes
1 answer

How to prevent opening /index.php or /index.html urls?

DirectoryIndex index.html index.php # -- INIT RewriteEngine on RewriteBase / # -- PRODUCTION # RewriteCond %{HTTP_HOST} ^www.assist\.loc$ [NC] # RewriteRule ^(.*)$ http://assist.loc/$1 [R=301,L] # -- SEO index.html // index.php ??????????? DONT…
gzhegow
  • 3
  • 1
  • 2
0
votes
2 answers

Local internet presence for SEO

I have a website hosted in the UK, but we're starting websites in other countries around the world. I've heard that if the French version of your website is physically hosted in France, then it gets a better rank for people searching in…
aidan
  • 615
  • 4
  • 10
  • 23
0
votes
4 answers

How to hide elasticbeanstalk.com address from public(search engine crawlers)

I have purchased a domain from godaddy( mentioning here as xyz.com ). I have hosted my website on aws using elasticbeanstalk which has generated a cname (mentioning here as abc.elasticbeanstalk.com). Now in godaddy I have done 2 configurations: 1.…
0
votes
1 answer

.htaccess rule to change hosts for SEO

I want to migrate one of my client's website from a free host to paid host. Currently, the site/domain is being hosted inside a sub-folder (used this tut: https://my.bluehost.com/cgi/help/347) at the free host. I would like to move the site to the…
dkjain
  • 101
  • 1
0
votes
1 answer

How to forward to Amazon S3 when in maintenance mode with nginx using 503?

During website maintenance, it is sometimes necessary to shutdown our website. Our current method is to touch a file which will trigger the web server (nginx) to redirect traffic to a maintenance page hosted in Amazon S3. It is important to host the…
Tom
  • 4,277
  • 11
  • 42
  • 52
0
votes
1 answer

How to efficiently permanently redirect 150.000 images?

For SEO purposes I need to rename around 150.000 images, then I'd like to permanently redirect the previous url locations requests to the new locations. The current url to every image is something…
0
votes
1 answer

Ip-failover and geolocalization

I have a server (from OVH) located in France with French ip. However most of the people coming to my website are from Poland. From what I read having a Polish ip address could lead to better search engine positioning in my case. So I ordered a…
user1583209
  • 133
  • 4
0
votes
2 answers

DNS wildcard entry from *.domain.com to www.domain.com

If a user enters ww2.domain.com he should be redirected to www.domain.com. This should be possible for all sort of subdomains (e.g. xxx.domain.com, ww.domain.com, ...). How should I set up the DNS record? Will this DNS entry work? *.domain.com. …
testing
  • 175
  • 1
  • 13
0
votes
2 answers

A record for www

Possible Duplicate: What’s the point in having “www” in a URL? My present DNS configuration for my website's A record is as below Name Value --------------------------- example.com 67.45.xx.xx www.example.com 67.45.xx.xx In…
Manjoor
  • 165
  • 2
  • 3
  • 10
0
votes
1 answer

Blogger custom domain - pitfalls of domain pointing?

This is quite a common topic to come up - wanting to use a custom host for a blogger blog. My personal reasons are due to issues concerning iframes, SEO and the specific address of the blog. I have the custom domain already, and I am familiar with…
user137263
  • 103
  • 1
0
votes
3 answers

Emailing hundreds of thousands of users for a newletter, company server or service?

My company has a website with a lot of visitors per day. We are planning to email hundreds of thousands of users. I read somewhere that your email reputation is build on your domain, we have very good SEO on google, so this should not be a problem.…
xtrimsky
  • 123
  • 1
  • 3
  • 12
0
votes
1 answer

htaccess and ending slash

Trying to add ending slash to all urls. Here is the code: RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_URI} !-f RewriteCond %{REQUEST_URI} !/$ RewriteCond %{REQUEST_URI} !.html$ RewriteCond…
Zhlobopotam
0
votes
1 answer

The proper way to redirect from http:// to /www in IIS7

I've noticed recently that Google and a number of other SEO tools are a little confused about where my site is located. They seem to be unsure about whether it's www. or non www. SEO Moze's Site Explorer tool is unsure and so is Google's webmaster's…
Zach Shallbetter
  • 172
  • 2
  • 11