Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3791200
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T12:26:00+00:00 2026-05-19T12:26:00+00:00

What I am trying to do is use a subdomain for a special mobile

  • 0

What I am trying to do is use a subdomain for a special mobile version of my ZF application. Ideally it would map to a specific controller like the example below, but at this point I’m willing to try any method that works:

Ex. m.domain.com/action would route to the “mobile” controller and whatever action is specified.

I found a number of similar questions here and elsewhere on the Google but I get the feeling I am missing something obvious because no matter what route I set up it’s just being ignored. I suspect it has something to do with htaccess but could be wrong there.

Here is the route I currently have in my bootstrap file (but I have tried a number of different patters here). Right now I’m just trying to get it to show the plain index for simplicity:

$hostRoute = new Zend_Controller_Router_Route_Hostname(':subdomain.domain.com', 
        array(
            'controller' => 'index',
            'action' => 'index'
            )
    );
$plainPathRoute = new Zend_Controller_Router_Route(':controller/:action/*',     
    array('controller' => 'index', 'action' => 'index'));
$controller->getRouter()->addRoute('mobile', $hostRoute->chain($plainPathRoute));

And my htaccess has:

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]

Now there are 2 methods I have been trying out here because I have been so frustrated.

  1. Create the subdomain “m” inside of my hosting account
  2. Subdomain “app” does not exist on my web hosting account

For method 1, it just goes to the generic index.html file that is in domain.com/m/. Method 2 tells me the page doesn’t exist.

I’m really hoping there is something obvious here that I’m missing. Like I mentioned above, I’m not picky about how exactly this gets executed, so long as I can have a subdomain point to a specific controller. It’s going to be a very simplified version of the site so I don’t really need to do anything complex.

Thanks for your help.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-19T12:26:00+00:00Added an answer on May 19, 2026 at 12:26 pm

    First of all, you need to configure your virtual host to handle multiple domains:

    <VirtualHost *:80>
        ServerName example.com
        ServerAlias www.example.com
        ServerAlias m.example.com
        ServerAlias www.m.example.com
        ...
    

    You may also do this by adding new subdomain pointing to your site root, via your hosting panel options.

    Then you may create a route chain, as in your example, or handle the switch yourself, e.g. in the controller plugin:

    $host = strtolower($request->getServer('HTTP_HOST'));
    if ('m.' === substr($host, 0, 2) || 'www.m.' === substr($host, 0, 6)) {
        $themes->setTheme('m');
        $userSession->theme = 'm';
        ...
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have multiple subdomains trying to use a single subdomain for authentiction using forms
I'm trying to use mod_rewrite to map multiple domains to different servlets on one
Trying to use an excpetion class which could provide location reference for XML parsing,
Trying to use a guid as a resource id in a rest url but
While trying to use LINQ to SQL I encountered several problems. I have table
I' trying to use a Linq query to find and set the selected value
I trying to use ImageInfo and Jython to get information from a image on
I'm trying to use svnmerge.py to merge some files. Under the hood it uses
I've been trying to use SQLite with the PDO wrapper in PHP with mixed
I'm trying to use SQLBindParameter to prepare my driver for input via SQLPutData .

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.