我们有一个.htaccess
- 这样的文件:
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} .
RewriteCond %{HTTP_HOST} !^www\.mysite\.no [NC]
RewriteRule (.*) http://www.mysite.no/$1 [R=301,L]
如果网址丢失,会在网址前面自动挂载www
。此外,我们必须将我们的网站扩展为我们想要致电m.mysite.no
的移动版本。
你如何做到这一点并使mod_rewrite忽略www
- 规则?不幸的是,这个网站是现场的,所以我们不能做太多的测试,我们在该领域的经验很少。
答案 0 :(得分:1)
变化:
RewriteCond %{HTTP_HOST} !^www\.mysite\.no [NC]
要:
RewriteCond %{HTTP_HOST} !^(www|m)\.mysite\.no [NC]