> Date: Sunday, January 14, 2018 00:03:27 +0300
> From: Gokan Atmaca <linux.go...@gmail.com>
>
> On Sat, Jan 13, 2018 at 10:52 PM, Richard wrote:
>> 
>>> Date: Saturday, January 13, 2018 22:43:38 +0300
>>> From: Gokan Atmaca <linux.go...@gmail.com>
>>> 
>>> The structure of our site is as follows. Connections default to
>>> "desk.site" folder. If the incoming connection requests come from
>>> mobile phones, "msite" goes to the folder. But CSS, JS files
>>> are not coming. I made a symbolic link to the mobile site folder.
>>> 
>>> Desktop /home/desk.site/public
>>> Mobil /home/msite/public
>>> 
>>> ln -s /home/msite/public /home/desk.site/msite
>>> 
>>> On Sat, Jan 13, 2018 at 6:24 PM, Walter H.
>>> <walte...@mathemainzel.info> wrote:
>>>> 
>>>> On 12.01.2018 22:23, Gokan Atmaca wrote:
>>>> 
>>>> Hello
>>>> 
>>>> I am redirecting Apache mobile clients to the mobile site. But
>>>> the files like cs,js,font,img are not working.
>>>> 
>>>> Can you help with this ?
>>>> 
>>>> config:
>>>> 
>>>> RewriteCond %{HTTP_USER_AGENT} ^.*(android|iPhone).*$ [NC]
>>>> RewriteRule ^ /msite/$1 [R=301,L]
>>>> 
>>>> what is $1?
>>>> 
>>>> this should be something like
>>>> 
>>>> RewriteRule ^(.*)$ /msite$1 [L,R=301]
>> 
>> 
>> What do your access and error logs show?
>> 

> There is no error. The access logs are as follows.
> x.x.x.x.x- [13/Jan/2018:15:52:04 +0300] "GET
> /e/home-ajax-get-prepared-orders HTTP/1.1" 200 1062
> "http://a.desk.com/e"; "Mozilla/5.0 (Windows NT 10.0)
> AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.79
> Safari/537.36 Edge/14.14393"
> 

That log entry is for a desktop browser (or at least not specifically
an android or iphone that you are redirecting), so not really
relevant for debugging your mobile-device browser problem. 

An android/iphone identified device should result in something in
your error log if the various pieces aren't loading. If nothing is
showing up there check that your logging is configured correctly.

My sense from the little that you have provided is that you are
simply  redirecting identified mobile devices down a separate branch
of your documentroot, not to a different [virtual] host, so all your
entries will be mixed in the same log.


[please do not top post.]




---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
For additional commands, e-mail: users-h...@httpd.apache.org

Reply via email to