Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/.htaccess/5.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
如何使用.htaccess在手机上而不是平板电脑上显示移动站点?_.htaccess_Redirect - Fatal编程技术网

如何使用.htaccess在手机上而不是平板电脑上显示移动站点?

如何使用.htaccess在手机上而不是平板电脑上显示移动站点?,.htaccess,redirect,.htaccess,Redirect,我们有一个桌面和移动网站。然而,手机版相当简单,在iPad/平板电脑上看起来不太好。我们能否禁止移动站点出现在平板电脑上,而只让它出现在手机设备上?这是一个apache/PHP/Drupal站点。我对.htaccess很陌生 <FilesMatch "\.(engine|inc|info|install|make|module|profile|test|po|sh|.*sql|theme|tpl(\.php)?|xtmpl)$|^(\..*|Entries.*|Repository|Roo

我们有一个桌面和移动网站。然而,手机版相当简单,在iPad/平板电脑上看起来不太好。我们能否禁止移动站点出现在平板电脑上,而只让它出现在手机设备上?这是一个apache/PHP/Drupal站点。我对.htaccess很陌生

<FilesMatch "\.(engine|inc|info|install|make|module|profile|test|po|sh|.*sql|theme|tpl(\.php)?|xtmpl)$|^(\..*|Entries.*|Repository|Root|Tag|Template)$">
  Order allow,deny
</FilesMatch>

# Don't show directory listings for URLs which map to a directory.
Options -Indexes

# Follow symbolic links in this directory.
Options +FollowSymLinks

# Make Drupal handle any 404 errors.
ErrorDocument 404 /index.php

# Set the default handler.
DirectoryIndex index.php index.html index.htm

# Override PHP settings that cannot be changed at runtime. See
# sites/default/default.settings.php and drupal_environment_initialize() in
# includes/bootstrap.inc for settings that can be changed at runtime.

# PHP 5, Apache 1 and 2.
<IfModule mod_php5.c>
  php_flag magic_quotes_gpc                 off
  php_flag magic_quotes_sybase              off
  php_flag register_globals                 off
  php_flag session.auto_start               off
  php_value mbstring.http_input             pass
  php_value mbstring.http_output            pass
  php_flag mbstring.encoding_translation    off
</IfModule>

# Requires mod_expires to be enabled.
<IfModule mod_expires.c>
  # Enable expirations.
  ExpiresActive On

  # Cache all files for 2 weeks after access (A).
  ExpiresDefault A1209600

  <FilesMatch \.php$>
    # Do not allow PHP scripts to be cached unless they explicitly send cache
    # headers themselves. Otherwise all scripts would have to overwrite the
    # headers set by mod_expires if they want another caching behavior. This may
    # fail if an error occurs early in the bootstrap process, and it may cause
    # problems if a non-Drupal PHP file is installed in a subdirectory.
    ExpiresActive Off
  </FilesMatch>
</IfModule>

# Various rewrite rules.
<IfModule mod_rewrite.c>
  RewriteEngine on

  # Block access to "hidden" directories whose names begin with a period. This
  # includes directories used by version control systems such as Subversion or
  # Git to store control files. Files whose names begin with a period, as well
  # as the control files used by CVS, are protected by the FilesMatch directive
  # above.
  #
  # NOTE: This only works when mod_rewrite is loaded. Without mod_rewrite, it is
  # not possible to block access to entire directories from .htaccess, because
  # <DirectoryMatch> is not allowed here.
  #
  # If you do not have mod_rewrite installed, you should remove these
  # directories from your webroot or otherwise protect them from being
  # downloaded.
  RewriteRule "(^|/)\." - [F]

  # If your site can be accessed both with and without the 'www.' prefix, you
  # can use one of the following settings to redirect users to your preferred
  # URL, either WITH or WITHOUT the 'www.' prefix. Choose ONLY one option:
  #
  # To redirect all users to access the site WITH the 'www.' prefix,
  # (http://example.com/... will be redirected to http://www.example.com/...)
  # uncomment the following:
  RewriteCond %{HTTP_HOST} !^www\. [NC]
  RewriteRule ^ http://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

  # Handle traffic to /mobile by code within the theme
  RewriteRule ^mobile(.*)$ /sites/all/themes/custom/mobile_site$1 [L]

命令允许,拒绝
#不显示映射到目录的URL的目录列表。
选项-索引
#遵循此目录中的符号链接。
选项+FollowSymLinks
#让Drupal处理任何404错误。
ErrorDocument 404/index.php
#设置默认处理程序。
DirectoryIndex.php index.html index.htm
#重写运行时无法更改的PHP设置。看见
#中的sites/default/default.settings.php和drupal_环境_initialize()
#包括/bootstrap.inc,用于可在运行时更改的设置。
#PHP5、Apache1和Apache2。
php_标志魔术_引号_gpc关闭
php_flag magic_quotes_sybase off
php_标志寄存器_全局关闭
php_标志session.auto_启动
php_值mbstring.http_输入传递
php_值mbstring.http_输出过程
php_标志mbstring.encoding_翻译关闭
#需要启用mod_expires。
#启用过期。
过期于
#访问后将所有文件缓存2周(A)。
到期默认A1209600
#不允许缓存PHP脚本,除非它们显式地发送缓存
#标题本身。否则,所有脚本都必须覆盖
#如果mod_设置的头需要另一个缓存行为,则它们将过期。今年五月
#如果在引导过程的早期出现错误,则失败,并可能导致
#如果在子目录中安装了非Drupal PHP文件,则会出现问题。
过期活动关闭
#各种重写规则。
重新启动发动机
#阻止访问名称以句点开头的“隐藏”目录。这
#包括版本控制系统(如Subversion或
#Git来存储控制文件。名称也以句点开头的文件
#作为CVS使用的控制文件,受FILEMATCH指令保护
#上面。
#
#注意:这仅在加载mod_rewrite时有效。没有mod_重写,它是
#无法阻止从.htaccess访问整个目录,因为
#这里是不允许的。
#
#如果未安装mod_rewrite,则应删除这些
#从您的webroot目录或以其他方式保护它们不被删除
#下载。
重写规则“(^ |/)\”-[F]
#如果您的站点既可以使用“www.”前缀访问,也可以不使用“www.”前缀访问,则您可以
#可以使用以下设置之一将用户重定向到您的首选
#URL,带或不带“www.”前缀。仅选择一个选项:
#
#要重定向所有用户以访问带有“www.”前缀的网站,
# (http://example.com/... 将被重定向到http://www.example.com/...)
#取消对以下内容的注释:
重写cond%{HTTP_HOST}^www\。[北卡罗来纳州]
重写规则^http://www.%{HTTP_HOST}%{REQUEST_URI}[L,R=301]
#通过主题内的代码处理到/移动的流量
重写规则^mobile(.*)$/sites/all/themes/custom/mobile\u site$1[L]

我意识到这并没有完全像你问的那样回答问题,但我将提出一个非常不同、非常有效的解决方案。当您的站点第一次被点击时,使用移动检测类/库作为钩子,并基于此重定向。Github上有一个名为Mobile Detect的优秀类,它维护得非常好,而且非常容易实现:

您应该能够将其作为库构建到站点中,然后设置一个cookie或会话来持久化用户的设备状态,这样就不必在每个页面请求中都检测到它

我建议这样做的原因是,如果在Apache虚拟主机或.htaccess文件中执行此操作,则需要执行以下操作:

    RewriteEngine on
    RewriteCond %{HTTP_USER_AGENT} iphone|ipad|android|blackberry [NC]
    RewriteRule ^$ /mobile.php

这很简单,但现在您必须为任何移动/平板电脑用户代理维护这一点。那么更大的android屏幕呢?应用程序中内置的移动检测类将允许您在不破坏Apache规则的情况下进行更新,并且您将受益于社区保持最新的内容。让Apache像这样对每个请求进行评估,只会消耗大量资源,让每个访问者都可以执行一次,然后由cookie或会话处理。

奇怪的是,如果阻止cookie,会发生什么情况?如果cookie设置返回false(任何类型的错误),这可以在会议期间完成。