让 www.example.com 和 example.com 使用相同会话变量的最佳方法?

编程入门 行业动态 更新时间:2024-10-23 15:31:00
本文介绍了让 www.example 和 example 使用相同会话变量的最佳方法?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

限时送ChatGPT账号..

我正在处理一个网页(我们称之为 example)并在 CNAME(别名)下添加了 DNS 记录:

I'm working on a webpage (let's call it example) and added the DNS record under CNAME (Alias):

Host Record Points    to  TTL
www  example       14400

但是,当我浏览 example 时,如果我转到 www.example,则不会保留设置的会话变量

However when I navigate through example, the session variables that are set are not retained if I go to www.example

让 www.example 和 example 使用相同会话变量的最佳方法是什么?

What is the best way to make www.example AND example use the same session variables?

我使用的是 ubuntu 12.04、php5、apache2.

I'm using ubuntu 12.04, php5, apache2.

<VirtualHost *:80>
    ServerAdmin webmaster@localhost
    ServerName www.example
    Redirect 301 / http://example/
    DocumentRoot /var/www/public_html
    <Directory />
            Options FollowSymLinks
            AllowOverride None
    </Directory>
    <Directory /var/www/public_html>
            Options Indexes FollowSymLinks MultiViews
            AllowOverride None
            Order allow,deny
            allow from all
    </Directory>

    ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
    <Directory "/usr/lib/cgi-bin">
            AllowOverride None
            Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
            Order allow,deny
            Allow from all
    </Directory>

    ErrorLog /var/log/apache2/error.log

    # Possible values include: debug, info, notice, warn, error, crit,
    # alert, emerg.
    LogLevel warn

    CustomLog /var/log/apache2/access.log combined

Alias /doc/ "/usr/share/doc/"
<Directory "/usr/share/doc/">
    Options Indexes MultiViews FollowSymLinks
    AllowOverride None
    Order deny,allow
    Deny from all
    Allow from 127.0.0.0/255.0.0.0 ::1/128
</Directory>

推荐答案

让 www.mysite 和 mysite 使用相同会话变量的最佳方法是什么?

What is the best way to make www.mysite AND mysite use the same session variables?

最好的方法是不要让两个主机名运行同一个站点.

The best way is to not have both host names running the same site.

选择其中一个作为规范,然后将所有内容从另一个重定向到规范的.

Pick one of them to be canonical, then redirect everything from the other to the canonical one.

<VirtualHost *:80>
ServerName example
Redirect 301 / http://www.example
etc

这篇关于让 www.example 和 example 使用相同会话变量的最佳方法?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

更多推荐

[db:关键词]

本文发布于:2023-04-20 00:41:50,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/972786.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:变量   方法   www

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!