Tagged Questions
0
votes
1answer
43 views
URL Rewrite => Variable to Subdomain
In my .htaccess file, this code works fine :
RewriteCond %{HTTP_HOST} ^(.+).mydomain.com$
RewriteRule ^(.*)$ http://mydomain.com/profile.php?username=%1 [R,L]
For example, when I write this URL ...
-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
2answers
48 views
how can i do this url (ca.mysite.com) on codeigniter?
i am making a site, that will be used for posting ads listings like backpage or craigslist,
now I'm having a problem with URLs, because for now it is available only in US cities,
for example: ...
0
votes
0answers
95 views
Nginx rewrite subdomain to path
i have a website on nginx and i would to like to create a rewrite rule like the following.
http://subdomain.domain.com/folderx/file.php?param=1¶m=2
to
...
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
40 views
Apache remove 'www' not working
I've been trying all the suggestions on here to remove 'www' from my sub-domain, but nothing seems to work.
To cut a long story short (or at least shorter), we've recently launched a site ...
0
votes
1answer
101 views
Nginx: NonWWW (80) and rewrite one subdomain (443)
I have 'www.domain.com' and want to always rewrite it to 'domain.com' (only available through/on port 80)
I also wanted to add subdomain like 'c.domain.com', always rewrited (and only available) to ...
0
votes
1answer
22 views
Weird redirection behaviour on Apache2 server?
I've built a new site for our company, whom I recently started working for, and deployed it on a separate subdomain (http://site.mysite.com) to not interfere with some URLs that need to remain on the ...
1
vote
3answers
317 views
Mapping subdomains to URLs with nginx
I'm very new to nginx, so forgive me if my explanations are off. I'll do my best to explain what I am trying to achieve.
Using WordPress and nginx, I would like user accounts to be mapped to a ...
0
votes
1answer
341 views
Nginx convert subdomain to path component without redirect
The idea is to take incoming requests to http://abc.example.com/... and rewrite them to http://example.com/abc/...
That's easy enough to do with a 301/302 redirect:
# rewrite via 301 Moved ...
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 ...
0
votes
0answers
54 views
Rewrite all subdomain to QueryString
I need to rewrite all subdomain to querystring
for example
From: http: // acme.mydomain.it
To: http: / /mydomain.it?name=acme
OR
From: http: // acme.mydomain.it?ID=123
To: http: // ...
0
votes
1answer
158 views
ASP.NET virtual subdomain via Rewrite
I'm going to make pages accessible by subdomains like below:
http://product12.domain.com instead of http://domain.com/?productid=12
How can I do that? is it possible to create subdomains ...
1
vote
1answer
162 views
How to set up Nginx config to rewite my subdomain
I'm try to set up the subdomains with Nginx, but I get some error. The following is my config:
server {
listen 80;
server_name dimain.com *.domain.com;
root ...
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
0answers
52 views
Can I use htaccess to invisibly redirect one domain to a subdomain on another domain?
I've been pulling my hair out trying to research this and find out if this is possible. Any help would be appreciated.
I have two domains. Let's call them foo.com and bar.com. I only have one web ...
0
votes
1answer
54 views
Can rewrite be used to mask a subpage of a main domain as a subdomain?
We are running a WordPress website and, for ease of use for our vendors, we would like to have the login page show up at:
http://my.website.com/
The original url is http://website.com/login
Is this ...
1
vote
1answer
246 views
Lighttpd single subdomain Redirect/rewrite
I am using lighttpd, and I would like to redirect a subdomain to a regular url, but keep the subdomain showing in the browser.
For example, if I have the following url: http://blog.test.com/...
and ...
2
votes
2answers
419 views
htaccess Rewrite Rule for subdomain to page
Currently I have a page residing at:
http://www.example.com/site/page
In my htaccess I have the current rule:
RewriteRule ^site/(.*)$ retailer.php?linklabel=$1 [QSA]
What would the rule look ...
0
votes
0answers
109 views
Combine multiple rewrite rules for Zeus
Currently, i have working with a Zeus server and we have a website which is developed using Wordpress. Zeus Sever don't support the .htaccess file which is required to install wordpress and also for ...
0
votes
1answer
77 views
How can I rewrite all traffic to sub-directory except sub-domains using .htaccess?
So the hosting provider I use doesn't support virtual hosts or anything similar so I'm trying to rewrite my primary domain to a sub-directory. So for example I currently have:
example.com rewritten ...
0
votes
3answers
310 views
.htaccess rewrite wildcard subsubdomain and params
I'm trying to write a mod_rewrite to work like this
wildcard.subdomain.domain.com => subdomain.domain.com/data.php?q=wildcard
wildcard.subdomain.domain.com/?repeat=1 => ...
1
vote
1answer
217 views
Directory to subdomain with same name
Thanks for reading. I have done a search, read multiple posts (lost count) and still having trouble with something that seems simple.
I am trying to redirect or rewrite from:
...
0
votes
0answers
319 views
Nginx/Joomla subdomains and URI rewriting
I am working on the SEO part of a multilingual website using Joomla 2.5 on Nginx. URLs currently look like the following:
http://www.aa.com/fr/some/thing.html (note the /fr/ langage code after the ...
0
votes
1answer
325 views
Nginx rewrite take subdomain and make param
I am trying to do the following.
A http requests hits my server with a refferer something like subsub.subdomain.domain.com now I want to rewrite this to https subdomain.domain.com/?mode=subsub
Any ...
0
votes
1answer
131 views
urls redirection from domain to sub domain
i reinstall my server and don't want to loose my old content.
I'm working now with joomla 2.5 and my old install was on joomla 1.5.
My problem is : how to redirect these urls :
...
2
votes
1answer
4k views
.htaccess rewrite subdomain to directory
Is it possible to use .htaccess to rewrite a sub domain to a directory?
Example:
http://sub.domain.com/ shows the content of http://domain.com/subdomains/sub/
-1
votes
1answer
220 views
Rewrite sub-domain url on web.config
In web.config, i want to re-write url of sub-domain.
http://m.mySite.com/listing-50.php
to
http://m.mySite.com/listing.php?id=50
2
votes
3answers
83 views
Rewrite link rule, conflicting files and folders
Been trying to resolve this problem with a rewrite rule that assigns a subdomain to a root directory of the same name, for example.
ddd.example.com will link to "/_projects/ddd" directory, that works ...
0
votes
0answers
237 views
Htaccess rewrite/redirect from subdomains hosted in subdirectories to main domain/directory while keeping the URL intact
On my hosting, all subdomains get their own folder, but I need them all to point to the same installation of Drupal. I have tried every trick I can think of - deleting the folder, symlinking (not ...
0
votes
2answers
221 views
Way to get around subdomain vs subfolder in terms of SEO?
I have a main domain, www.example.com, that has ranking and 'trust' in Google. I'm creating a blog, but, for various reasons, I HAVE to host it on a subdomain, sub.example.com.
I know that when a ...
0
votes
2answers
966 views
nginx - rewrite domain.com:port to sub.domain.com
How can i rewrite a domain with a port to a subdomain?
e.q.: domain.com:3000 to sub.domain.com ?
thanks for your help! :)
greetz
3
votes
2answers
856 views
nginx server configuration: subdomain to folder
I migrated from Apache 2 to nginx and I've got problems to handly my subdomain control.
What I want: When x.domain.tld is requested, internally rewrite to domain.tld/x
The problem I've got is that ...
0
votes
1answer
586 views
Wildcard nginx rewrite
I suspect this will be quite simple, yet I can't seem to get my head around the nginx rewrite system. Hopefully someone could chime in and help me out?
Quite simply, I need..
...
0
votes
1answer
420 views
.htaccess subdomain redirect
My server is somehow configured to accept any string as a existing subdomian. This subdomains doesn't redirect, they show content instead. For example:
bla.example.com // shows the content of ...
0
votes
2answers
947 views
Rewrite location to subdomain in nginx
How can I rewrite a subdomain to an application in NGINX?
My configuration is
server {
listen 80;
server_name domain.com www.domain.com;
location / {
include ...
0
votes
1answer
806 views
Wildcard subdomains redirected to www with htaccess
There seem to be a million posts on StackOverflow on this topic, but none seem to be exactly what I'm after.
Basically, I'm trying to redirect all random non-existent subdomains to the "www" version ...
-1
votes
1answer
228 views
Redirect and rewrite file to subdomain
Our site have this url
http://mydomain.com/blog.php?id=50
and need redirect its by 301 to
http://blogs.mydomain.com/blog.php?id=50
must create sub domain or folder or can we do it directly ...
0
votes
1answer
241 views
php mod_rewrite cannot get second parameter from rewritecond
I have a server that I am setting up to rewrite subdomains as get parameters
So,
subdomain.example.com/blog/test
would actually point to:
...
0
votes
1answer
37 views
how would i rewrite a file to a subdomain in htaccess
I have a subdirectory for various cities.How can I use htaccess to rewrite these to a subdomain?
for example
http://www.domain.com/search/atlanta.php
to
http://www.atlanta.domain.com
thanks for ...
0
votes
1answer
87 views
Apache: (non)trivial rewrite of subdomains
I have an (at least for me) non trivial task with a project running on an Apache2 VHost.
Assuming that I own the domain 'foobar.com' and created a 'wildcard catch all' for all subdmains at my ...
1
vote
0answers
189 views
rewrite subdomain to folder [closed]
I am using IIS7 and I have a page www.domain.com/contactus.html. I want to convert it to a subdomain. so when someone types contactus.domain.com it actually returns www.domain.com/contactus.html ...
0
votes
1answer
126 views
.htaccess Rewrite with authentication
I've been looking for a htaccess rewrite and authentication solution but I can't understand the rewrite at all :(
What I need is when a user goes to http://sub.domain.com/folder or ...
1
vote
1answer
295 views
Htaccess redirect not invisible
I've done many htaccess redirects, but for some reason this one doesn't redirect the subdomain to a subfolder.
RewriteCond %{HTTP:Host} ^((?!www\.)(.+)|(?:www\.)(.+))\.(timseverien\.nl)$ [NC]
...
0
votes
1answer
937 views
Use htaccess to rewrite subdomain files to a folder
I need to rewrite a files on subdomain to files stored in the folder with name of the subdomain. Only files that start with sitemap should be rewritten. So, if the requests look like this:
...
0
votes
1answer
559 views
Please help me understand simple nginx rewrite issue for subdomain robots.txt
For my subdomain I wanted to point to a different robots.txt file. I had hoped the following code would work:
if ($host ~ subdomain) {
rewrite ^/favicon.ico$ /favicon.ico break;
rewrite ...
0
votes
0answers
1k views
IIS rewrite subdomain to subdirectory not working 100%
I'm using IIS 7.5's rewrite module. I'm trying to do a typical rewrite where an HTTP request to subdomain.example.com/* rewrites to example.com/subdomain/*. It partly works. I have the following:
...
0
votes
1answer
204 views
Multi-Lingual Site with subdomains
I want to make a multi-lingual website that defaults to English like example.com with subdomains like fr.example.com, de.example.com, it.example.com ...
now, if the user selects fr.example.com, the ...
0
votes
1answer
226 views
How to set htaccess to redirect/rewrite from to subdomain
I want htp://www.seostuff.org.ua/?s=seo to be redirected to htp://seo.seostuff.org.ua
Instead of seo can be any other search pattern
Buy this way I managed to make htp://seo.seostuff.org.ua ...

