0
votes
1answer
21 views

Invalid Subdomains of Addon Domains Show Content Fom Main Domain

I have a website - www.example.com. There is content at www.example.com/content.html. I have an addon domain called www.addon.com. If I type invalidsubdomain.addon.com/content.html into the address ...
0
votes
0answers
25 views

Rewrite sudomain to subfolder in combination with other rwrite

I have URLs such as http://example.com/flyers/?seo_url=some-body/bride-2x-photo-81 and I would like to rewrite them to www.flyers.domain.com/some-body/bride-2x-photo-81. Flyers is a sub-directory ...
0
votes
0answers
15 views

modrewrite subdomain redirect with different redirect for file request

Given a subdomain foo.example.com which redirects to example.com/bar. In addition, if one enters the address example.com/foo it should redirect to example.com/bar. However, and here is the ...
0
votes
2answers
25 views

Rewrite subdomain to subfolder causes loop error or 403

I have a local Apache server set up on my machine, with wildcard DNS in place. I have it set up so that it works like [foldername].loc. So, for instance, a folder under my htdocs folder called ...
0
votes
1answer
24 views

Apache mod_rewrite for sub domain

I'm looking to do some simple mod_rewrite but im kinda new to this. I am looking to be able to visit http://login.markrdbaker.com and that will route to http://markrdbaker.com/stuff/login.php ...
-2
votes
1answer
25 views

Multipe rewrite urls (domain.tld/blogs.php?user=username&post=postname TO username.domain.tld/posts/postname) [closed]

How i can rewrite urls from this domain.tld/blogs.php?user=username&post=postname to this one: username.domain.tld/posts/postname
0
votes
0answers
113 views

OpenCart sub-domain .htaccess issue

I have installed opencart on my company's subdomain like so: http://store.example.in, that is, by creating a sub-domain below the main domain since I did not want to disturb the main site. ...
0
votes
3answers
66 views

Trouble with mod_rewrite, subdomain and codeigniter

I have a codeigniter installation at example.com/ci. I have a subdomain foo.example.com. The document root for the foo subdomain is set to be home/public_html/ci. I'm using the following rule in ...
-1
votes
1answer
58 views

Change port and host using .htaccess [closed]

I am trying to use mod_rewrite to basically port forward a port on a subdomain to another port on another IP. Like this: sub.website.com:2000 --> 123.45.67.891:3000 How could this be ...
0
votes
2answers
213 views

.htaccess - Redirect from subdomain root to subdomain's folder (mod_rewrite/mod_proxy)

Problem I am trying to redirect from the root folder of a sub-domain, e.g. sub.example.com, to a sub-directory of the sub-domain and keep the sub-domain in the address bar, e.g. ...
0
votes
1answer
53 views

How do I redirect subdomains that do not exist?

I am trying to redirect using .htaccess in the following fashion. I am not all that familiar with .htaccess, so I'm not sure it can be done. Also, I don't know if how I am intending to do it follows ...
0
votes
1answer
49 views

Redirect old URL to new subdomain

I have a blog under example.com/blog, but now I changed to blog.example.com, which redirects to the same old folder. I don't want users to access directly the old URL, so, redirecting /blog to blog. ...
0
votes
1answer
181 views

Wildcard subdomains with .htaccess (Codeigniter)

In my current project, I was asked to provide blog feature for every registered user, that means when you register, you can automatically write blogs on site. This was easily done, however, I was ...
0
votes
0answers
73 views

mod_rewrite virtual subdomain and query string

What I have setup are virtual sub domains - for example, admin.mydomain.com points to mydomain.com/admin. I have also set it up in the past so that my query strings look like this ...
0
votes
1answer
104 views

Apache mod_rewrite folder to subdomain

domain.com/folder/index.php/var1/var2/etc/ should redirect to folder.domain.com/var1/var2/etc/ i.e. keeping the parameters intact but redirecting and stripping the index.php Folder structure is as ...
0
votes
2answers
53 views

Using subdomain value as $_GET variable [duplicate]

Currently my site url is set up using mod_rewrite and $_GET variables to load different content. Like this: mysite.com/subsite/var1/var2 I'd like to change that format to look like this: ...
3
votes
2answers
101 views

Using mod-Rewrite with 5 pages (wildcard sub-domain)

Let's say I got 5 pages (index.php, about.php, portfolio.php, gallery.php, contact.php). Let's say the id is 1. The original url is : www.domain.com/folder/index.php?id=1, ...
0
votes
1answer
89 views

Using mod-rewrite with multiple pages

Simplified Question I changed domain.com/folder/client.php?id=1 to 1.domain.com with this .htaccess code Options +FollowSymLinks RewriteEngine on RewriteCond %{HTTP_HOST} !^www.domain.com$ [NC] ...
0
votes
1answer
207 views

mod_rewrite: Error whilst rewriting subdomain to directory via %{HTTP_HOST}

Problems with mod_rewrite I am having more trouble than I thought when it comes to Apache's mod_rewrite. I've already posted one question on the matter, and that has been clarified, but I continue to ...
2
votes
1answer
212 views

Subdomain mod_rewrite (htaccess) to relative directory

I am having a bit of trouble rewriting sub-domains to directories that reside above the web root. I have had plenty of experience with mod_rewrite before, but this particular problem is beyond me. ...
0
votes
1answer
71 views

Understanding subdomain url mod-rewrite

I need to understand url mod-rewrite but couldn't get the basic at all. I want to change www.domain.com/folder/page.php?id=1 to 1.domain.com I created a wildcard subdomain (*.domain.com) and the ...
0
votes
0answers
61 views

No redirect to mobile site from specific subdomain

Currently we have a mobile site running for our main http://www.domain.nl and all mobile visitors are redirected via htaccess to this mobile site. However, visitors of a subdomain (i.e. bc.domain.nl), ...
0
votes
1answer
103 views

How to create subdomain for URL Alias in Drupal php

I have created a multilingual site in Drupal. So I have www.mydomain.com/jp for Japanese language and I want to create a subdomain like www.jp.mydomain.com for www.mydomain.com/jp. The problem is ...
0
votes
0answers
123 views

Rewriterule for subdomain, but don't change URL

I have a site, mysite.com, with several subdomains. However, I want each subdomain, say, anysubdomain.mysite.com/num to redirect to mysite.com/display.php?i=num&c=anysubdomain. Right now I have a ...
1
vote
0answers
98 views

Apache mod_rewrite ~userdir to subdomain

I cant find how to redirect (optional: www.)domain.pl/~userdir/(optional)page.html to www.userdir.domain.pl/(optional)page.html in apache .htaccess. Examples: domain.pl/~userdir -> ...
1
vote
1answer
73 views

Creating wildcard subdomain doesn't work

I want created a wildcard subdomain for each user from mysql database. The subdomain works but the page is loading without the related files (css, js). List of user page : website.com/user/index.php ...
0
votes
1answer
91 views

.htaccess rewriterule not working for single page

I have a couple pages: http://waleyqiao.com/about/ http://waleyqiao.com/index/ http://waleyqiao.com/contact/ http://waleyqiao.com/blog/ http://waleyqiao.com/portfolio/ The real pages would be ...
0
votes
0answers
154 views

mod_rewrite: Redirect sub-domain and folders, but not folder contents

I have assets.domain.com hosting all my images, typefaces, scripts, etc. for a Wordpress installation on the top-level domain. I want to redirect any access to subdomain and folders to top-level ...
0
votes
0answers
63 views

Serve main directory from subdomain URL without redirecting

I have a http.//domain.com served at /var/www/domain I also a http.//subdomain.domain.com served at /var/www/domain/subdomain When a user visits http.//subdomain.domain.com i want apache to serve ...
0
votes
1answer
65 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. ...
0
votes
1answer
127 views

.htaccess mod rewrite folder to subdomain

So I have the main photos folder and I want to make it subdomain style so there is /images/ and /images/thumbs. What I'm trying to accomplish is 'converting' /images/ -> images.domain.com and ...
0
votes
3answers
140 views

.htaccess retrieve from folder if subdomain, not 301 redirecting?

I want my site to just point to /user folder if the request is a subdomain. If the request is subdomain.site.com/admin, then the site should show the page for subdomain.site.com/user/admin. The ...
1
vote
0answers
42 views

mod_rewrite: how to make htdocs/directory processed as htdocs/? [closed]

A shared webhosting is set up in such a way that DocumentRoot of the domain is htdocs and when a new subdomain is created a dir inside htdocs is created: htdocs/subdomain. So now the index file for ...
2
votes
1answer
219 views

htaccess mod rewrite $_GET to variables with slashes

I would like to rewrite URL's with htaccess to better readable URL's and use the $_GET variable in PHP I sometimes make use of a subdomain so it has to work with and without. Also are the variables ...
1
vote
1answer
107 views

Using mod_rewrite to redirect non-existent subdomain to home page

I have searched all over this site and the web and still I cannot get this right. I have many URLs like this: http://archives.cancunandrivieramaya.com/archives/cancun.cgi/md/read/id/XXXX that I want ...
1
vote
1answer
108 views

mod_rewrite and subdomains

I have a "beta" subdomain for testing my actual project, this subdomain is pointing to the beta folder in my root server. I have a users folder with all the users information too. For showing the ...
1
vote
2answers
59 views

htaccess create the appearance of a subdomin but use a MVC controller instead of a folder

Ok I am using MVC, specifically Codeigniter. I have a need to create a sub domain on the service I am building. To pass a more "Mobile" friend version of the service to a user. Via m.example.com. ...
2
votes
1answer
90 views

rewrite file to subdomain

We used this rules RewriteCond %{HTTP_HOST} ^mydomain\.com [NC] RewriteCond %{QUERY_STRING} ^n=(.+)$ RewriteRule ^news\.php$ http://news.mydomain.cop/news.php?n=%1 [L,R=301] for redirect ...
0
votes
1answer
113 views

Redirect subdomain using .htaccess

I have a EC2 instance and host several sites on the server. I can redirect different domains to their specific folders but I cannot seem to redirect subdomains. Here is my code so far for ...
1
vote
0answers
57 views

Use .htacess RewriteCond for all subdirectories of a subdomain

How would I use a RewriteCond for all subdirectories of my subdomain Example: test.example.com/folder1/page1.php -> code.example/folder1/page1.php (showing test.example.com/folder1/page1.php in the ...
1
vote
1answer
78 views

URL rewriting a subdomain

Here is my question: I am wanting to redirect users from one subdomain while serving files from the previous. For example, I want a user to access their account: Files are located at: ...
1
vote
1answer
70 views

.htaccess language subdomains affect other rules

I know that there were many questions like this but I still can't solve the problem. I am using following .htaccess code to change the language: RewriteCond %{HTTP_HOST} ^(en|us)\.domain\.com$ # ...
1
vote
1answer
113 views

How to load specific page for subdomain url, using htaccess

How can I let my server load (invisibly!) somepage.htm, when an url is given with a subdomain in front of it, using only Apache's .htaccess ? So that when user types subdomain.website.org then server ...
0
votes
1answer
58 views

.htaccess doens't work on subdomain

I wrote a little .htaccess document, to rewrite url's from 127.0.0.1/index.php?page=dashboard to 127.0.0.1/dashboard. This works fine on my localhost, but when I place it on the subdomain of a domain ...
0
votes
0answers
47 views

How can you do this with mod_rewrite?

Let's say I have a doamin example.com. I want every sub-domain of example.com to load contents from example.com WITHOUT changing URL in user's browser or something. For example, aaa.example.com will ...
0
votes
1answer
107 views

How to redirect a non-existing directory to a sub-domain

During the last 2 hours I'm trying to achieve the following with no success. I have a domain (lets call it www.test.com) which is assigned to a specific folder in my host, for example : ...
0
votes
1answer
87 views

not accessing wildcard subdomain folder

when I am trying to load the wildcard subdomain its properly pointing the index file which I mentioned in the root domain .htaccess file like below RewriteCond %{HTTP_HOST} ^(^.).mydomain.com ...
0
votes
0answers
39 views

Linux Sub Domain for directory that doesn't exist

Hi I want to create a sub domain on my linux box, but I want to create it to a domain that doesn't actually exist. For example: shop.mydomain.com would point to mydomain.com/shop/ But shop only ...
1
vote
1answer
170 views

mod_rewite .htaccess subdomain redirect

I spend the last 2 days searching and learning about .htaccess to redirect all subdomains to a user folder without changing the url, but i keep having 3 little problems. I really would appreciate some ...
1
vote
1answer
160 views

How to add subdomain in .htaccess and force WWW in url

I have the following code to force WWW in url rewriteCond %{HTTP_HOST} !^www.example.com [NC] rewriteRule ^(.*)$ http://www.example.com/$1 [R=301,L] I want to add a subdomain max.example and refer ...

1 2 3 4