The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
15 views

New htaccess file - 301 re-directs and trailing slash

I am new here, I really need help I am creating a new site with opencart version 1.5.5.1 & I have tried creating my own htaccess file but it is not doing what I want it to do. I have tried a lot ...
1
vote
2answers
28 views

PHP redirect for www to non-www with 301 on IIS

I'd like to get this straighten out once and for all: <?php if ($_SERVER['HTTP_HOST'] != 'domain.com'){ header("Location: http://domain.com" .$_SERVER['REQUEST_URI']); } ?> This will send all ...
1
vote
0answers
38 views

SEO friendly, non-www, hidden index.php URL

I would like to do four things with apache mod_rewrite: Remove www http://www.example.com/ >>> http://example.com/ Remove index.php http://example.com/index.php >>> ...
0
votes
1answer
49 views

network solutions to heroku non-www redirection to www domain

This is a very specific question I have regarding redirection of a domain on network solutions to a webapp hosted on heroku. I have already set up so that in CNAME Records, Allias www refers to ...
1
vote
1answer
47 views

Redirecting non www, index.html, 404

I have created code to redirect for non www to www, /index.html to "/", 404 to custom page, I am using IIS server and putting this code in web.config file, have a look, its working fine. But I want to ...
0
votes
1answer
21 views

Website going down intermittenty, but server is always up

I have recently set up my domain, but my problem is when I navigate with/without www, the results are inconsistent. They are supposed to point to the same page, but sometimes, the www site has broken ...
-1
votes
2answers
32 views

jQuery WWW error

I'm developing a website and the forms rely on jQuery $.ajax which will post the data and then send back a result. But I have a problem. If I access the site through 'http://site.com/' and click the ...
0
votes
0answers
16 views

redirecting file extension to friendly, along with www suppression

I'm using some initializr/H5BP .htaccess rules, and I've set it to accept requests without .HTML for html documents. I'm also using the suppression rule for WWW. When I enter example.com/page, it ...
0
votes
1answer
42 views

GlassFish app cannot be accessed with www URL

When I deploy my application locally or on the server, I can always access the app at either http://localhost:8080/myApp/ or http://example.com/myApp. However, whenever I add www to either of the ...
-1
votes
1answer
110 views

Soft 404's in Webmaster Tools & Redirecting www to non-www [closed]

All URL's under domain.com redirect to www.domain.com with a 301. All bad URL's under www.domain.com give a proper 404 response. We have many people who have linked to old or incorrect pages on ...
0
votes
2answers
38 views

I'm totally baffled… how do i redirect to both www an non www to a new domain?

I've recently moved domains successfully however what I didn't realise was that there were two versions of the website: www and non-www I want to redirect the traffic from my non-www site to my new ...
0
votes
0answers
33 views

In tornado or in GAE can you redirect all www requests to the naked domain?

Basically is there a way to do the url rewrite, or domain level routing or redirection in tornado? To make it clearer, I want to redirect all www.mydomain.com/something to mydomain.com/something ...
0
votes
0answers
150 views

Redirect from non www to www blogger and wordpress.com with GoDaddy

I have two blogs. One blogger account and the other at Wordpress.com. I use both custom domains. The domains registered in GoDaddy. I want both of which will redirect non www address address with the ...
0
votes
2answers
254 views

Non-www to www domain using Nginx on Ubuntu 12.04 LTS on Ec2 instance

After seeing this post http://www.ewanleith.com/blog/900/10-million-hits-a-day-with-wordpress-using-a-15-server I changed my server from apache2 to nginx. I am no computer geek just, savvy. I followed ...
0
votes
1answer
124 views

Best way to redirect non-www to www?

What would be the best way to redirect my non-www urls to www url in my site. I think they are being redirected with a 301 redirect now but traffic that is being sent to my non-www is not tracked ...
1
vote
1answer
124 views

.htaccess rewrite www to non-www redirect problems

So I've been trying to get this redirect code to work for a few hours now and it's driving me crazy. I have the opposite direction (non-www to www) working with this code: RewriteEngine On ...
0
votes
1answer
64 views

Multi-site force www. on ALL subdomains htaccess snippet

I previously got some great help here with a tad bit complicated .htaccess file. It is a multi-site/domain file and uses %{HTTP_HOST} to rewrite/301 the non-wwww to the www.widgets.com address. ...
1
vote
0answers
59 views

Integrating non www to www in an already working web.config for 404

After looking for the answer for hours, I need to ask. Let's say I have this web.config file that successfully redirects my 404 error page on my windows 2008 server: <?xml version="1.0" ...
0
votes
1answer
107 views

Heroku Issues with re-directs from non-www to www

I have set up my application with SSL at e.g. www.mydomainhere.com Through my DNS provider, I have set up a URL forward to go from mydomainhere.com to www.mydomainhere.com and that works. However, ...
0
votes
4answers
86 views

HTML Navigation Error. How to handle www.website.com versus website.com? Correct navigation in html?

I have the following html code: <div id="page"> <a class="topNavigationLink" href="http://MyOwnWebsite.com/">Home</a> <a class="topNavigationLink" ...
0
votes
0answers
73 views

htaccess rewrite www to non-www https [closed]

I need your help to solve two rewrite issues: How to rewrite all www.mydomain.com and https://www.mydomain.com to be https://mydomain.com How to rewrite www.mydomain.com to http://mydomain.com ...
0
votes
1answer
322 views

Apache + Tomcat with mod_proxy - redirect to www not working

I have a problem trying to rewrite the root of my web from mywebsite.com/mywebsite to www.mywebsite.com/mywebsite. The problem is related to the use of mod_proxy to invoke Tomcat File proxy.conf ...
0
votes
2answers
79 views

Apache2 WWW remove FAIL with .htaccess

I want to remove "www" from my domain at apache2. I tryed out lots of examples whiches do it with an .htaccess file but none of them works. So here's my .htacces which is owned by user root with chmod ...
0
votes
2answers
403 views

httpd.conf Alias does not work for www version of site

I recently added a favicon to a Django site by editing my httpd.conf file: Alias /favicon.ico /home/learntango/webapps/staticapp/site_images/favicon.ico This works for no-www, but not for www.: ...
5
votes
4answers
160 views

Is the www subdomain good practice?

I know it is good practice to keep your website entirely 'http://www' or http://, and i'm also aware the www is just a subdomain. The main question I have is Which one of these would be the best ...
0
votes
1answer
142 views

CakePHP htaccess for removing www

I know that too much questions exist for htaccess redirection, but I couldn't find the exact solution. I'm sorry if there exist a matching question. In my public html (webroot) folder there was ...
0
votes
0answers
62 views

htaccess with shortcuts and forcing no-www together

I'm using htaccess to both remove the www from the hostname and to implement shortcuts to parts of the website. I'd like http://www.somedomain.com/video --> http://somedomain.com/videos.html And I'd ...
1
vote
1answer
40 views

Combine OpenID Google tokens hashes from www and non-www

I made the mistake to serve a the same site from http://mysite.com and http://www.mysite.com and allowing OpenID logins from both. The realm were different for both, www, and non-www. I ran into the ...
0
votes
2answers
89 views

Is there a reason this js breaks without the url prefix: www? [closed]

When I test this website, some of the javascript breaks and a checkbox won't mark itself when clicked if I'm using the url without the prefix: www. It works fine if I do have the prefix there. I'm ...
2
votes
2answers
917 views

Redirect https to non-www and http to www

I searched and found hundreds of related cases, but none exactly as what I need. I need a combination of redirects to do the following: Access to : http://mysite.com -redirected to-> ...
0
votes
0answers
215 views

mod_rewrite remove www for all domains

I have multiple domains all pointing to the same website and depending on which domain you enter the website, will determine which categories will be selected. For this to work I have to place any ...
0
votes
1answer
824 views

www in domain not working in nginx

I'm new to using nginx, well, new to using anything that's not cpanel... I'm having problems getting domains to work using nginx when you include www. in the url. www.mydomain.com > not work 404 ...
0
votes
0answers
413 views

Sending POST data in form with CakePHP redirecting from www to non-www

I am using CakePHP and i have just added this code to app/webroot/.htaccess in order to redirect all http://mywebsite.com to www.mywebsite.com <IfModule mod_rewrite.c> RewriteEngine On ...
0
votes
1answer
226 views

htaccess - get all non-www traffic redirected to the www

Can anyone suggest how I get non www traffic to redirect to the www version of a website using the htaccess file - I know I have one created in my root directory but cannot be sure what to put.. any ...
0
votes
1answer
265 views

non www to www redirection inside folder redirects 404

I'm redirecting all non www urls to www. for that i've used the following htaccess rules: RewriteCond %{HTTP_HOST} . RewriteCond %{HTTP_HOST} !^www.example.com [NC] RewriteRule (.*)$ ...
1
vote
1answer
682 views

Force www redirects to home page, htaccess errors

I have a product page that loads fine when I type in the www with the URL (www.domain.com/product), but when I don’t, it redirects to the home page(domain.com/product -> www.domain.com). I'm using ...
1
vote
1answer
1k views

Create a 301 redirect in .htaccess for folder to subdomain AND redirect www to non-www

I've searched everywhere and used some examples but they don't meet my specific needs, hence why I'm asking here if anyone can please help? I know the http:: below isn't correct, it's just because I ...
1
vote
1answer
542 views

Rails/Passenger/Apache2: Redirect from www.domain.com to domain.com

I'm hosting a domain with both addresses www.domain.com and domain.com through an "alias" directive specified in the VirtualHost config file: <VirtualHost *:80> ServerName domain.com ...
0
votes
1answer
524 views

www redirect with double slash

When I enter my website http://domain.com it redirects to http://www.domain.com// (double slash in the end). What is strange, I haven't set any redirects in .htaccess file. Actually that file is ...
0
votes
1answer
65 views

htaccess server error when removing www from url

.htacess error <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{HTTP_HOST} ^www.netsentries.com RewriteRule ^(.*)$ http://netsentries/$1 [R=301,L] RewriteBase / RewriteRule ...
34
votes
2answers
14k views

Nginx no-www to www and www to no-www

I am using nginx on Rackspace cloud following a tutorial, searched the net and so far can't get this sorted. I want www.mysite.com to go to mysite.com as normal in .htaccess for seo and other ...
2
votes
1answer
886 views

removing www and index.php from url in symfony

I've been searching for like 3 or 4 hours without any result(before searching I played with rules for an hour but couldn't do it) I don't know if you've noticed or no but google uses www like this ...
0
votes
1answer
130 views

Adding “www” with mod_rewrite [duplicate]

Possible Duplicate: 301 redirect non-www to www not always working I have a web site and it is possible to access it with both "www" and without "www" (e.g. www.example.com and ...
-1
votes
1answer
311 views

Universal list of domain endings?

Does anyone know where I could find a list of all publicly available domain endings? By "domain endings", I'm not necessarily referring to TLDs as I'm not interested in the .uk part of .co.uk since ...
1
vote
0answers
131 views

Xbap Application behavior change with or without “www”

We are writing and running a xbap application. We use URL parameters to change the application's behaviour when the user logs in. To do that we use ...
-1
votes
3answers
74 views

www redirection for co.in and co.uk [closed]

Anyone please help me to redirect in apache webserver My domains which have .co.in extensions http://domain.co.in should be redirected to http://www.domain.co.in
1
vote
1answer
136 views

Remove www. in directory only

I'm trying to remove the www. for a single directory called dir (for example). I need to be able to do this from the .htaccess file in that directory. (I don't have root access.) Any idea how to make ...
1
vote
2answers
2k views

.htaccess Remove WWW from URL + Directories

This seems to be a non-issue for many people (read: I can't find an answer), but I would like to update the following htaccess code to not only remove the 'www' from the URL, but also any ...
0
votes
1answer
617 views

ASP.net simple rewrite rule

I'm trying to rewrite non www to www domains. I've tried the rule: <rewrite url="http://domain\.com(.+)" to="http://www.domain.com$1" /> But to no avail. It just continues to allow access ...
2
votes
1answer
285 views

Canonical no-www URLs with Rails 3?

What do you think about this solution? The idea is to make the no-www version as the canonical one. So we simply strip out the 'www.' from the request url: != '<link rel="canonical" href="' + ...

1 2