tar -zxvf postgresql-8.0.3.tar.gz cd postgresql-8.0.3
./configure --prefix=/usr/local/pgsql
注意:有的系统并没有默认安装readline*2。可能会报出缺乏readline支持,但是不要紧,可以用命令行避免使用Readline库,但是这样会关闭 psql 里的命令行编辑和历史。 ./configure --without-readline
当然还可以安装readline-devel和readline来支持。 make
make install
最后的安装文件会安装在/usr/local/pgsql下,然后添加postgres用户: adduser postgres
把安装路径的所有文件都改变成postgres组和用户拥有。 chown -R postgres /usr/local/pgsql chgrp -R postgres /usr/local/pgsql
su postgres (切换到postgres用户身份执行程序) /usr/local/pgsql/bin/initdb -D /usr/local/pgsql/data
这个命令是建立数据库目录到指定的路径,数据会存储在/usr/local/pgsql/data目录下。 /usr/local/pgsql/bin/postmaster -D /usr/local/pgsql/data >logfile 2>&1 & 指定日志文件之后可以建立测试数据库: /usr/local/pgsql/bin/createdb postgres_db /usr/local/pgsql/bin/psql postgres_db
让系统自动运行postgres,在postgresql-8.0.3/contrib/start-scripts目录下有linux这个文件。 cp linux /etc/init.d/postgresql chkconfig --add postgresql 把postgresql添加到启动列表 chmod -R 777 /etc/init.d/postgresql
重新启动系统或直接/etc/init.d/postgresql start 就可以测试
pgsql远程连接配置: #gedit postgresql.conf
#listen_addresses = 'localhost'为listen_addresses = '*' #port =5432 将#去掉 找到data\\pg_hba.conf 修改IPV4为:
# IPv4 local connections:
host all all 127.0.0.1/32 trust host all all 0.0.0.0/0 trust 远程连接测试: 使用 pgadmin
====================================================================== pgsql tsearch2 安装配置:
cd postgresql-8.0.3/contrib/tsearch2
gmake
gmake install
====================================================================== pgsql slony 安装配置: tar -zxvf slony1-1.1.2.tar.bz2 cd slony1-1.1.2
./configure --with-pgsourcetree=/root/install/postgresql-8.0.3 gmake
gmake install
======================================================================
mysql 安装配置: yum -y install mysql yum -y install php-mysql
gedit /etc/my.cnf
在.old_passwords=1下添加 default-character-set=utf8
并在配置文件的最后添加以下语句: [mysql]
default-character-set=utf8 chkconfig mysqld on chkconfig --list mysqld
====================================================================== JDK的安装配置
首先应该把系统自带的JAVA删除: 第一种删除方法: rpm -qa|grep java rpm -e ......
第二种删除方法:
yum remove java 删除完后然后
mkdir /usr/jdk1.5.0_04
并把jdk-1_5_0_04-linux-i586.bin 复制到该文件夹 chmod +x jdk-1_5_0_04-linux-i586.bin ./jdk-1_5_0_04-linux-i586 设置一下系统的环境变量 gedit /etc/profile
在文件最后加入以下代码:
#export ANT_HOME=/usr/local/ant
export JAVA_HOME=/usr/java/jdk1.5.0_04
export CATALINA_HOME=/usr/local/jakarta-tomcat-5.5.9
export
CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar:$JAVA_HOME/jre/lib
export
PATH=$PATH:$JAVA_HOME/bin:$JAVA_HOME/jre/bin:/usr/local/pgsql/bin:${ANT_HOME}/bin:/usr/local/php/bin
export LD_LIBRARY_PATH=/usr/local/pgsql/lib:$LD_LIBRARY_PATH export PGDATA=/usr/local/pgsql/data
export MANPATH=$MANPATH:/usr/local/pgsql/man
及时生效
#source /etc/profile
====================================================================== apache 安装配置
#yum install httpd
#yum install httpd-devel
具体文件配置(http.conf)在后面详解
====================================================================== tomcat 安装配置
tar -zxvf jakarta-tomcat-5.5.9.tar.gz 将解压后的文件复制到 /usr/local/中 建立快捷链接 tomcat 配置:
gedit /usr/local/tomcat/bin/catalina.sh
我们在最后添加一个配置:
JAVA_HOME=/usr/java/jdk1.5.0_04
意思是当tomcat运行时会找jdk这个文件 启动tomcat
/usr/local/tomcat/bin/startup.sh 设置tomcat随系统启动 编辑/etc/rc.d/rc.local
export JDK_HOME=/usr/local/jdk1.5.0_04 export JAVA_HOME=/usr/local/jdk1.5.0_04 /usr/local/tomcat/bin/startup.sh
====================================================================== apache和tomcat 通过jk方式关联
tar -zxvf jakarta-tomcat-connectors-current-src.tar.gz cd jakarta-tomcat-connectors-1.2.14.1-src cd jk/native ./buildconf.sh
./configure --with-apxs=/usr/sbin/apxs --with-java-home=/usr/local/jdk1.5.0_04 make
make install
配置httpd.conf 文件(以下详解) 创建并配置workers.properties文件 gedit /etc/httpd/conf/workers.properties
workers.apache_log=/etc/httpd/logs/
workers.tomcat_home=/usr/local/jakarta-tomcat-5.5.9 workers.java_home=/usr/java/jdk1.5.0_06 ps=/
# Define 1 worker, real worker using jni worker.list=ajp13
# Set properties for worker1 (jni) #worker.worker1.type=jni # ajp13 (ajp13)
worker.ajp13.type=ajp13 worker.ajp13.host=localhost worker.ajp13.port=8009 worker.ajp13.cachesize=10
worker.ajp13.cache_timeout=600 worker.ajp13.socket_keepalive=1 worker.ajp13.socket_timeout=60
worker.worker1.jvm_lib=$(workers.java_home)$(ps)jre$(ps)bin$(ps)classic$(ps)libjvm.so worker.worker1.stdout=$(workers.apache_log)$(ps)inprocess.stdout worker.worker1.stderr=$(workers.apache_log)$(ps)inprocess.stderr worker.worker1.sysprops=tomcat.home=$(workers.tomcat_home)
创建并配置worker.properties文件 gedit /etc/httpd/conf/worker.properties workers.apache_log=/etc/httpd/logs/
workers.tomcat_home=/usr/local/jakarta-tomcat-5.5.9 workers.java_home=/usr/java/jdk1.5.0_06 ps=/
# Define 1 worker, real worker using jni worker.list=ajp13
# Set properties for worker1 (jni) #worker.worker1.type=jni # ajp13 (ajp13)
worker.ajp13.type=ajp13 worker.ajp13.host=localhost worker.ajp13.port=8009
worker.ajp13.cachesize=10
worker.ajp13.cache_timeout=600 worker.ajp13.socket_keepalive=1 worker.ajp13.socket_timeout=60
worker.worker1.jvm_lib=$(workers.java_home)$(ps)jre$(ps)bin$(ps)classic$(ps)libjvm.so worker.worker1.stdout=$(workers.apache_log)$(ps)inprocess.stdout worker.worker1.stderr=$(workers.apache_log)$(ps)inprocess.stderr worker.worker1.sysprops=tomcat.home=$(workers.tomcat_home)
编辑server.xml文件(这里不需要配置了)
====================================================================== php的安装配置
首先卸载系统自带的php yum remove php
tar -zxvf php-4.4.4.tar.gz cd php-4.4.4
./configure --prefix=/usr/local/php --with-apxs2=/usr/sbin/apxs --with-pgsql=/usr/local/pgsql --enable-safe-mode --with-xml --with-Mysql --enable-short-tags --enable-memory-limit --disable-posix --enable-mbstring make
make install
cp php.ini-dist /usr/local/php/lib php.ini
====================================================================================================================================== http.conf 的配置(附配置完整的http.conf)
====================================================================================================================================== turck-mmcache的配置
tar zvxf turck-mmcache-2.4.6.tar.gz cd turck-mmcache-2.4.6 /usr/local/php/bin/phpize
./configure --enable-mmcache-shared --with-php-config=/usr/local/php/bin/php-config make
make install 修改php.ini
gedit /usr/local/php/lib/php.ini 在[php]下面添加:
zend_extension=\"/usr/local/php/lib/php/extensions/no-debug-non-zts-20020429/mmcache.so\" mmcache.shm_size=\"16\"
mmcache.cache_dir=\"/tmp/mmcache\" mmcache.enable=\"1\" mmcache.optimizer=\"1\"
mmcache.check_mtime=\"1\" mmcache.debug=\"0\" mmcache.filter=\"\"
mmcache.shm_max=\"0\" mmcache.shm_ttl=\"0\"
mmcache.shm_prune_period=\"0\" mmcache.shm_only=\"0\" mmcache.compress=\"1\"
mkdir /tmp/mmcache chmod 0777 /tmp/mmcache
apache (httpd.conf)详细配置: #
# This is the main Apache server configuration file. It contains the # configuration directives that give the server its instructions.
# See
# # Do NOT simply read the instructions in here without understanding # what they do. They're here only as hints or reminders. If you are unsure # consult the online docs. You have been warned. # # The configuration directives are grouped into three basic sections: # 1. Directives that control the operation of the Apache server process as a # whole (the 'global environment'). # 2. Directives that define the parameters of the 'main' or 'default' server, # which responds to requests that aren't handled by a virtual host. # These directives also provide default values for the settings # of all virtual hosts. # 3. Settings for virtual hosts, which allow Web requests to be sent to # different IP addresses or hostnames and have them handled by the # same Apache server process. # # Configuration and logfile names: If the filenames you specify for many # of the server's control files begin with \"/\" (or \"drive:/\" for Win32), the # server will use that explicit path. If the filenames do *not* begin # with \"/\# with ServerRoot set to \"/etc/httpd\" will be interpreted by the # server as \"/etc/httpd/logs/foo.log\". # ### Section 1: Global Environment # # The directives in this section affect the overall operation of Apache, # such as the number of concurrent requests it can handle or where it # can find its configuration files. # # # Don't give away too much information about all the subcomponents # we are running. Comment out this line if you don't mind remote sites # finding out what major optional modules you are running ServerTokens OS # # ServerRoot: The top of the directory tree under which the server's # configuration, error, and log files are kept. # # NOTE! If you intend to place this on an NFS (or otherwise network) # mounted filesystem then please read the LockFile documentation # (available at # Do NOT add a slash at the end of the directory path. # ServerRoot \"/etc/httpd\" # # PidFile: The file in which the server should record its process # identification number when it starts. # PidFile run/httpd.pid # # Timeout: The number of seconds before receives and sends time out. # Timeout 300 # # KeepAlive: Whether or not to allow persistent connections (more than # one request per connection). Set to \"Off\" to deactivate. # #KeepAlive Off KeepAlive On # # MaxKeepAliveRequests: The maximum number of requests to allow # during a persistent connection. Set to 0 to allow an unlimited amount. # We recommend you leave this number high, for maximum performance. # MaxKeepAliveRequests 100 # # KeepAliveTimeout: Number of seconds to wait for the next request from the # same client on the same connection. # KeepAliveTimeout 15 ## ## Server-Pool Size Regulation (MPM specific) ## # prefork MPM # StartServers: number of server processes to start # MinSpareServers: minimum number of server processes which are kept spare # MaxSpareServers: maximum number of server processes which are kept spare # ServerLimit: maximum value for MaxClients for the lifetime of the server # MaxClients: maximum number of server processes allowed to start # MaxRequestsPerChild: maximum number of requests a server process serves MaxRequestsPerChild 1000 # worker MPM # StartServers: initial number of server processes to start # MaxClients: maximum number of simultaneous client connections # MinSpareThreads: minimum number of worker threads which are kept spare # MaxSpareThreads: maximum number of worker threads which are kept spare # ThreadsPerChild: constant number of worker threads in each server process # MaxRequestsPerChild: maximum number of requests a server process serves MaxSpareThreads 75 ThreadsPerChild 25 MaxRequestsPerChild 0 # Listen: Allows you to bind Apache to specific IP addresses and/or # ports, in addition to the default. See also the # Change this to Listen on specific IP addresses as shown below to # prevent Apache from glomming onto all bound IP addresses (0.0.0.0) # #Listen 12.34.56.78:80 Listen 80 # # Dynamic Shared Object (DSO) Support # # To be able to use the functionality of a module which was built as a DSO you # have to place corresponding `LoadModule' lines at this location so the # directives contained in it are actually available _before_ they are used. # Statically compiled modules (those listed by `httpd -l') do not need # to be loaded here. # # Example: # LoadModule foo_module modules/mod_foo.so # LoadModule auth_basic_module modules/mod_auth_basic.so LoadModule auth_digest_module modules/mod_auth_digest.so LoadModule authn_file_module modules/mod_authn_file.so LoadModule authn_alias_module modules/mod_authn_alias.so LoadModule authn_anon_module modules/mod_authn_anon.so LoadModule authn_dbm_module modules/mod_authn_dbm.so LoadModule authn_default_module modules/mod_authn_default.so LoadModule authz_host_module modules/mod_authz_host.so LoadModule authz_user_module modules/mod_authz_user.so LoadModule authz_owner_module modules/mod_authz_owner.so LoadModule authz_groupfile_module modules/mod_authz_groupfile.so LoadModule authz_dbm_module modules/mod_authz_dbm.so LoadModule authz_default_module modules/mod_authz_default.so LoadModule ldap_module modules/mod_ldap.so LoadModule authnz_ldap_module modules/mod_authnz_ldap.so LoadModule include_module modules/mod_include.so LoadModule log_config_module modules/mod_log_config.so LoadModule logio_module modules/mod_logio.so LoadModule env_module modules/mod_env.so LoadModule ext_filter_module modules/mod_ext_filter.so LoadModule mime_magic_module modules/mod_mime_magic.so LoadModule expires_module modules/mod_expires.so LoadModule deflate_module modules/mod_deflate.so LoadModule headers_module modules/mod_headers.so LoadModule usertrack_module modules/mod_usertrack.so LoadModule setenvif_module modules/mod_setenvif.so LoadModule mime_module modules/mod_mime.so LoadModule dav_module modules/mod_dav.so LoadModule status_module modules/mod_status.so LoadModule autoindex_module modules/mod_autoindex.so LoadModule info_module modules/mod_info.so LoadModule dav_fs_module modules/mod_dav_fs.so LoadModule vhost_alias_module modules/mod_vhost_alias.so LoadModule negotiation_module modules/mod_negotiation.so LoadModule dir_module modules/mod_dir.so LoadModule actions_module modules/mod_actions.so LoadModule speling_module modules/mod_speling.so LoadModule userdir_module modules/mod_userdir.so LoadModule alias_module modules/mod_alias.so LoadModule rewrite_module modules/mod_rewrite.so LoadModule proxy_module modules/mod_proxy.so LoadModule proxy_balancer_module modules/mod_proxy_balancer.so LoadModule proxy_ftp_module modules/mod_proxy_ftp.so LoadModule proxy_http_module modules/mod_proxy_http.so LoadModule proxy_connect_module modules/mod_proxy_connect.so LoadModule cache_module modules/mod_cache.so LoadModule suexec_module modules/mod_suexec.so LoadModule disk_cache_module modules/mod_disk_cache.so LoadModule file_cache_module modules/mod_file_cache.so LoadModule mem_cache_module modules/mod_mem_cache.so LoadModule cgi_module modules/mod_cgi.so LoadModule version_module modules/mod_version.so LoadModule jk_module modules/mod_jk.so # # The following modules are not loaded by default: # #LoadModule cern_meta_module modules/mod_cern_meta.so #LoadModule asis_module modules/mod_asis.so #LoadModule php4_module /usr/lib/httpd/modules/libphp4.so LoadModule php4_module /etc/httpd/modules/libphp4.so # # Load config files from the config directory \"/etc/httpd/conf.d\". # Include conf.d/*.conf Include /etc/httpd/conf/mod_jk.conf # # ExtendedStatus controls whether Apache will generate \"full\" status # information (ExtendedStatus On) or just basic information (ExtendedStatus # Off) when the \"server-status\" handler is called. The default is Off. # #ExtendedStatus On # # If you wish httpd to run as a different user or group, you must run # httpd as root initially and it will switch. # # User/Group: The name (or #number) of the user/group to run httpd as. # . On SCO (ODT 3) use \"User nouser\" and \"Group nogroup\". # . On HPUX you may not be able to use shared memory as nobody, and the # suggested workaround is to create a user www and use that user. # NOTE that some kernels refuse to setgid(Group) or semctl(IPC_SET) # when the value of (unsigned)Group is above 60000; # don't use Group #-1 on these systems! # User tomcat Group gudumami ### Section 2: 'Main' server configuration # # The directives in this section set up the values used by the 'main' # server, which responds to any requests that aren't handled by a # # All of these directives may appear inside # ServerAdmin: Your address, where problems with the server should be # e-mailed. This address appears on some server-generated pages, such # as error documents. e.g. admin@your-domain.com # ServerAdmin root@localhost # # ServerName gives the name and port that the server uses to identify itself. # This can often be determined automatically, but we recommend you specify # it explicitly to prevent problems during startup. # # If this is not set to valid DNS name for your host, server-generated # redirections will not work. See also the UseCanonicalName directive. # # If your host doesn't have a registered DNS name, enter its IP address here. # You will have to access it by its address anyway, and this will make # redirections work in a sensible way. # #ServerName www.example.com:80 ServerName localhost:80 # # UseCanonicalName: Determines how Apache constructs self-referencing # URLs and the SERVER_NAME and SERVER_PORT variables. # When set \"Off\# by the client. When set \"On\# ServerName directive. # UseCanonicalName Off # # DocumentRoot: The directory out of which you will serve your # documents. By default, all requests are taken from this directory, but # symbolic links and aliases may be used to point to other locations. # #DocumentRoot \"/var/www/html\" DocumentRoot \"/usr/local/tomcat/webapps/ROOT\" # # Each directory to which Apache has access can be configured with respect # to which services and features are allowed and/or disabled in that # directory (and its subdirectories). # # First, we configure the \"default\" to be a very restrictive set of # features. # Options FollowSymLinks AllowOverride None Order deny,allow # # Note that from this point forward you must specifically allow # particular features to be enabled - so if something's not working as # you might expect, make sure that you have specifically enabled it # below. # # # This should be changed to whatever you set DocumentRoot to. # # SetEnvIf Referer \"^http://www\\.gudumami\\.cn/\\?zyad=(.*)\" local_referal #SetEnvIf Referer \"^$\" local_referal # Possible values for the Options directive are \"None\# or any combination of: # Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews # # Note that \"MultiViews\" must be named *explicitly* --- \"Options All\" # doesn't give it to you. # # The Options directive is both complicated and important. Please see # http://httpd.apache.org/docs/2.2/mod/core.html#options # for more information. # Options Indexes FollowSymLinks # # AllowOverride controls what directives may be placed in .htaccess files. # It can be \"All\# Options FileInfo AuthConfig Limit # AllowOverride All # # Controls who can get stuff from this server. # Order allow,deny Allow from all Deny from env=local_referal # UserDir: The name of the directory that is appended onto a user's home # directory if a ~user request is received. # # The path to the end user account 'public_html' directory must be # accessible to the webserver userid. This usually means that ~userid # must have permissions of 711, ~userid/public_html must have permissions # of 755, and documents contained therein must be world-readable. # Otherwise, the client will only receive a \"403 Forbidden\" message. # # See also: http://httpd.apache.org/docs/misc/FAQ.html#forbidden # # UserDir is disabled by default since it can confirm the presence # of a username on the system (depending on home directory # permissions). # UserDir disable # # To enable requests to /~user/ to serve the user's public_html # directory, remove the \"UserDir disable\" line above, and uncomment # the following line instead: # #UserDir public_html # Control access to UserDir directories. The following is an example # for a site where these directories are restricted to read-only. # # # AllowOverride FileInfo AuthConfig Limit # Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec # # # DirectoryIndex: sets the file that Apache will serve if a directory # is requested. # # The index.html.var file (a type-map) is used to deliver content- # negotiated documents. The MultiViews Option can be used for the # same purpose, but it is much slower. # DirectoryIndex index.html index.htm index.jsp index.php index.html.var # # AccessFileName: The name of the file to look for in each directory # for additional configuration directives. See also the AllowOverride # directive. # AccessFileName .htaccess # # The following lines prevent .htaccess and .htpasswd files from being # viewed by Web clients. # Order allow,deny Deny from all # TypesConfig describes where the mime.types file (or equivalent) is # to be found. # TypesConfig /etc/mime.types # # DefaultType is the default MIME type the server will use for a document # if it cannot otherwise determine one, such as from filename extensions. # If your server contains mostly text or HTML documents, \"text/plain\" is # a good value. If most of your content is binary, such as applications # or images, you may want to use \"application/octet-stream\" instead to # keep browsers from trying to display binary files as though they are # text. # DefaultType text/plain # # The mod_mime_magic module allows the server to use various hints from the # contents of the file itself to determine its type. The MIMEMagicFile # directive tells the module where the hint definitions are located. # # MIMEMagicFile /usr/share/magic.mime MIMEMagicFile conf/magic # HostnameLookups: Log the names of clients or just their IP addresses # e.g., www.apache.org (on) or 204.62.129.132 (off). # The default is off because it'd be overall better for the net if people # had to knowingly turn this feature on, since enabling it means that # each client request will result in AT LEAST one lookup request to the # nameserver. # HostnameLookups Off # # EnableMMAP: Control whether memory-mapping is used to deliver # files (assuming that the underlying OS supports it). # The default is on; turn this off if you serve from NFS-mounted # filesystems. On some systems, turning it off (regardless of # filesystem) can improve performance; for details, please see # http://httpd.apache.org/docs/2.2/mod/core.html#enablemmap # #EnableMMAP off # # EnableSendfile: Control whether the sendfile kernel support is # used to deliver files (assuming that the OS supports it). # The default is on; turn this off if you serve from NFS-mounted # filesystems. Please see # http://httpd.apache.org/docs/2.2/mod/core.html#enablesendfile # #EnableSendfile off # # ErrorLog: The location of the error log file. # If you do not specify an ErrorLog directive within a # logged here. If you *do* define an error logfile for a ErrorLog logs/error_log # # LogLevel: Control the number of messages logged to the error_log. # Possible values include: debug, info, notice, warn, error, crit, # alert, emerg. # LogLevel crit # # The following directives define some format nicknames for use with # a CustomLog directive (see below). # LogFormat \"%h %l %u %t \\\"%r\\\" %>s %b\" common LogFormat \"%{Referer}i -> %U\" referer LogFormat \"%{User-agent}i\" agent LogFormat \"%h %l %u %{[%m/%d/%Y %H:%M:%S]}t \\\"%r\\\" %>s %b \\\"%{Referer}i\\\" \\\"%{User-Agent}i\\\"\" coupon #LogFormat \"%h %l %u %t \\\"%r\\\" %>s %b \\\"%{Referer}i\\\" \\\"%{User-Agent}i\\\" %{cookie}n\" combined LogFormat \"%h %l %u %t \\\"%r\\\" %>s %b \\\"%{Referer}i\\\" \\\"%{User-Agent}i\\\"\" combined # \"combinedio\" includes actual counts of actual bytes received (%I) and sent (%O); this # requires the mod_logio module to be loaded. #LogFormat \"%h %l %u %t \\\"%r\\\" %>s %b \\\"%{Referer}i\\\" \\\"%{User-Agent}i\\\" %I %O\" combinedio # # The location and format of the access logfile (Common Logfile Format). # If you do not define any access logfiles within a # #CustomLog logs/access_log common CustomLog logs/access_log combined # # If you would like to have separate agent and referer logfiles, uncomment # the following directives. # #CustomLog logs/referer_log referer #CustomLog logs/agent_log agent # # For a single logfile with access, agent, and referer information # (Combined Logfile Format), use the following directive: # CustomLog logs/access_log combined # # Optionally add a line containing the server version and virtual host # name to server-generated pages (internal error documents, FTP directory # listings, mod_status and mod_info output etc., but not CGI generated # documents or custom error documents). # Set to \"EMail\" to also include a mailto: link to the ServerAdmin. # Set to one of: On | Off | EMail # ServerSignature Off # # Aliases: Add here as many aliases as you need (with no limit). The format is # Alias fakename realname # # Note that if you include a trailing / on fakename then the server will # require it to be present in the URL. So \"/icons\" isn't aliased in this # example, only \"/icons/\". If the fakename is slash-terminated, then the # realname must also be slash terminated, and if the fakename omits the # trailing slash, the realname must also omit it. # # We include the /icons/ alias for FancyIndexed directory listings. If you # do not use FancyIndexing, you may comment this out. # Alias /icons/ \"/var/www/icons/\" Order allow,deny Allow from all # This should be changed to the ServerRoot/manual/. The alias provides # the manual, even if you choose to move your DocumentRoot. You may comment # this out if you do not care for the documentation. # Alias /manual \"/var/www/manual\" Alias /editor/ \"/usr/local/tomcat/webapps/editor/\" Options Indexes FollowSymLinks MultiViews AllowOverride None Order allow,deny Allow from all # WebDAV module configuration section. # # Location of the WebDAV lock database. DAVLockDB /var/lib/dav/lockdb # ScriptAlias: This controls which directories contain server scripts. # ScriptAliases are essentially the same as Aliases, except that # documents in the realname directory are treated as applications and # run by the server when requested rather than as documents sent to the client. # The same rules about trailing \"/\" apply to ScriptAlias directives as to # Alias. # ScriptAlias /cgi-bin/ \"/var/www/cgi-bin/\" # # \"/var/www/cgi-bin\" should be changed to whatever your ScriptAliased # CGI directory exists, if you have that configured. # Allow from all # Redirect allows you to tell clients about documents which used to exist in # your server's namespace, but do not anymore. This allows you to tell the # clients where to look for the relocated document. # Example: # Redirect permanent /foo http://www.example.com/bar # # Directives controlling the display of server-generated directory listings. # # # IndexOptions: Controls the appearance of server-generated directory # listings. # IndexOptions FancyIndexing VersionSort NameWidth=* HTMLTable # # AddIcon* directives tell the server which icon to show for different # files or filename extensions. These are only displayed for # FancyIndexed directories. # AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip AddIconByType (TXT,/icons/text.gif) text/* AddIconByType (IMG,/icons/image2.gif) image/* AddIconByType (SND,/icons/sound2.gif) audio/* AddIconByType (VID,/icons/movie.gif) video/* AddIcon /icons/binary.gif .bin .exe AddIcon /icons/binhex.gif .hqx AddIcon /icons/tar.gif .tar AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip AddIcon /icons/a.gif .ps .ai .eps AddIcon /icons/layout.gif .html .shtml .htm .pdf AddIcon /icons/text.gif .txt AddIcon /icons/c.gif .c AddIcon /icons/p.gif .pl .py AddIcon /icons/f.gif .for AddIcon /icons/dvi.gif .dvi AddIcon /icons/uuencoded.gif .uu AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl AddIcon /icons/tex.gif .tex AddIcon /icons/bomb.gif core AddIcon /icons/back.gif .. AddIcon /icons/hand.right.gif README AddIcon /icons/folder.gif ^^DIRECTORY^^ AddIcon /icons/blank.gif ^^BLANKICON^^ AddType application/x-httpd-php .html .htm AddType application/x-httpd-php .php AddType application/x-httpd-php-source .phps # # DefaultIcon is which icon to show for files which do not have an icon # explicitly set. # DefaultIcon /icons/unknown.gif # # AddDescription allows you to place a short description after a file in # server-generated indexes. These are only displayed for FancyIndexed # directories. # Format: AddDescription \"description\" filename # #AddDescription \"GZIP compressed document\" .gz #AddDescription \"tar archive\" .tar #AddDescription \"GZIP compressed tar archive\" .tgz # # ReadmeName is the name of the README file the server will look for by # default, and append to directory listings. # # HeaderName is the name of a file which should be prepended to # directory indexes. ReadmeName README.html HeaderName HEADER.html # # IndexIgnore is a set of filenames which directory indexing should ignore # and not include in the listing. Shell-style wildcarding is permitted. # IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t # # DefaultLanguage and AddLanguage allows you to specify the language of # a document. You can then use content negotiation to give a browser a # file in a language the user can understand. # # Specify a default language. This means that all data # going out without a specific language tag (see below) will # be marked with this one. You probably do NOT want to set # this unless you are sure it is correct for all cases. # # * It is generally better to not mark a page as # * being a certain language than marking it with the wrong # * language! # # DefaultLanguage nl # # Note 1: The suffix does not have to be the same as the language # keyword --- those with documents in Polish (whose net-standard # language code is pl) may wish to use \"AddLanguage pl .po\" to # avoid the ambiguity with the common suffix for perl scripts. # # Note 2: The example entries below illustrate that in some cases # the two character 'Language' abbreviation is not identical to # the two character 'Country' code for its country, # E.g. 'Danmark/dk' versus 'Danish/da'. # # Note 3: In the case of 'ltz' we violate the RFC by using a three char # specifier. There is 'work in progress' to fix this and get # the reference data for rfc1766 cleaned up. # # Catalan (ca) - Croatian (hr) - Czech (cs) - Danish (da) - Dutch (nl) # English (en) - Esperanto (eo) - Estonian (et) - French (fr) - German (de) # Greek-Modern (el) - Hebrew (he) - Italian (it) - Japanese (ja) # Korean (ko) - Luxembourgeois* (ltz) - Norwegian Nynorsk (nn) # Norwegian (no) - Polish (pl) - Portugese (pt) # Brazilian Portuguese (pt-BR) - Russian (ru) - Swedish (sv) # Simplified Chinese (zh-CN) - Spanish (es) - Traditional Chinese (zh-TW) # AddLanguage da .dk AddLanguage nl .nl AddLanguage en .en AddLanguage et .et AddLanguage fr .fr AddLanguage de .de AddLanguage he .he AddLanguage el .el AddLanguage it .it AddLanguage ja .ja AddLanguage pl .po AddLanguage ko .ko AddLanguage pt .pt AddLanguage nn .nn AddLanguage no .no AddLanguage pt-br .pt-br AddLanguage ltz .ltz AddLanguage ca .ca AddLanguage es .es AddLanguage sv .sv AddLanguage cs .cz .cs AddLanguage ru .ru AddLanguage zh-CN .zh-cn AddLanguage zh-TW .zh-tw AddLanguage hr .hr # # LanguagePriority allows you to give precedence to some languages # in case of a tie during content negotiation. # # Just list the languages in decreasing order of preference. We have # more or less alphabetized them here. You probably want to change this. # LanguagePriority en da nl et fr de el it ja ko no pl pt pt-br ltz ca es sv tw # # ForceLanguagePriority allows you to serve a result page rather than # MULTIPLE CHOICES (Prefer) [in case of a tie] or NOT ACCEPTABLE (Fallback) # [in case no accepted languages matched the available variants] # ForceLanguagePriority Prefer Fallback # # Specify a default charset for all content served; this enables # interpretation of all content as UTF-8 by default. To use the # default browser choice (ISO-8859-1), or to allow the META tags # in HTML content to override this choice, comment out this # directive: # AddDefaultCharset UTF-8 # # Commonly used filename extensions to character sets. You probably # want to avoid clashes with the language extensions, unless you # are good at carefully testing your setup after each change. # See http://www.iana.org/assignments/character-sets for the # official list of charset names and their respective RFCs # AddCharset ISO-8859-1 .iso8859-1 .latin1 AddCharset ISO-8859-2 .iso8859-2 .latin2 .cen AddCharset ISO-8859-3 .iso8859-3 .latin3 AddCharset ISO-8859-4 .iso8859-4 .latin4 AddCharset ISO-8859-5 .iso8859-5 .latin5 .cyr .iso-ru AddCharset ISO-8859-6 .iso8859-6 .latin6 .arb AddCharset ISO-8859-7 .iso8859-7 .latin7 .grk AddCharset ISO-8859-8 .iso8859-8 .latin8 .heb AddCharset ISO-8859-9 .iso8859-9 .latin9 .trk AddCharset ISO-2022-JP .iso2022-jp .jis AddCharset ISO-2022-KR .iso2022-kr .kis AddCharset ISO-2022-CN .iso2022-cn .cis AddCharset Big5 .Big5 .big5 # For russian, more than one charset is used (depends on client, mostly): AddCharset WINDOWS-1251 .cp-1251 .win-1251 AddCharset CP866 .cp866 AddCharset KOI8-r .koi8-r .koi8-ru AddCharset KOI8-ru .koi8-uk .ua AddCharset ISO-106-UCS-2 .ucs2 AddCharset ISO-106-UCS-4 .ucs4 AddCharset UTF-8 .utf8 # The set below does not map to a specific (iso) standard # but works on a fairly wide range of browsers. Note that # capitalization actually matters (it should not, but it # does for some browsers). # # See http://www.iana.org/assignments/character-sets # for a list of sorts. But browsers support few. # AddCharset GB2312 .gb2312 .gb AddCharset utf-7 .utf7 AddCharset utf-8 .utf8 AddCharset big5 .big5 .b5 AddCharset EUC-TW .euc-tw AddCharset EUC-JP .euc-jp AddCharset EUC-KR .euc-kr AddCharset shift_jis .sjis # # AddType allows you to add to or override the MIME configuration # file mime.types for specific file types. # #AddType application/x-tar .tgz AddType application/x-tar .tgz AddType application/x-httpd-php .html # # AddEncoding allows you to have certain browsers uncompress # information on the fly. Note: Not all browsers support this. # Despite the name similarity, the following Add* directives have nothing # to do with the FancyIndexing customization directives above. # AddEncoding x-compress .Z AddEncoding x-gzip .gz .tgz # If the AddEncoding directives above are commented-out, then you # probably should define those extensions to indicate media types: # AddType application/x-compress .Z AddType application/x-gzip .gz .tgz # # AddHandler allows you to map certain file extensions to \"handlers\": # actions unrelated to filetype. These can be either built into the server # or added with the Action directive (see below) # # To use CGI scripts outside of ScriptAliased directories: # (You will also need to add \"ExecCGI\" to the \"Options\" directive.) # #AddHandler cgi-script .cgi # # For files that include their own HTTP headers: # #AddHandler send-as-is asis # # For server-parsed imagemap files: # AddHandler imap-file map # # For type maps (negotiated resources): # (This is enabled by default to allow the Apache \"It Worked\" page # to be distributed in multiple languages.) # AddHandler type-map var # # Filters allow you to process content before it is sent to the client. # # To parse .shtml files for server-side includes (SSI): # (You will also need to add \"Includes\" to the \"Options\" directive.) # #AddType text/html .shtml AddOutputFilter INCLUDES .html # # Action lets you define media types that will execute a script whenever # a matching file is called. This eliminates the need for repeated URL # pathnames for oft-used CGI file processors. # Format: Action media/type /cgi-script/location # Format: Action handler-name /cgi-script/location # # # Customizable error responses come in three flavors: # 1) plain text 2) local redirects 3) external redirects # # Some examples: #ErrorDocument 500 \"The server made a boo boo.\" #ErrorDocument 404 /missing.html #ErrorDocument 404 \"/cgi-bin/missing_handler.pl\" #ErrorDocument 402 http://www.example.com/subscription_info.html # # # Putting this all together, we can internationalize error responses. # # We use Alias to redirect any /error/HTTP_ # You can modify the messages' appearance without changing any of the # default HTTP_ # # Alias /error/include/ \"/your/include/path/\" # # which allows you to create your own set of files by starting with the # /var/www/error/include/ files and # copying them to /your/include/path/, even on a per-VirtualHost basis. # #Alias /admin \"/usr/local/tomcat/webapps/admin/\" #Alias /pro \"/usr/local/tomcat/webapps/pro/\" Alias /photos \"/usr/local/tomcat/webapps/smarty/photos/docroot/\" Alias /bbs \"/usr/local/tomcat/webapps/bbs/\" Alias /gu \"/usr/local/tomcat/webapps/gu/\" #Alias /bossblog \"/usr/local/tomcat/webapps/bossblog/\" #Alias /srajcc \"/usr/local/tomcat/webapps/srajcc/\" #Alias /beijing/ \"/usr/local/tomcat/webapps/beijing/\" #Alias /jp \"/usr/local/tomcat/webapps/jp/\" Alias /img_u \"/mnt/smb/store/img_u/\" #Alias /phpmyadmin/ \"/usr/local/tomcat/webapps/phpmyadmin/\" Alias /adminpic/ \"/mnt/smb/store/adminpic/\" #Alias /track \"/usr/local/tomcat/webapps/track/\" #Alias /phpadmin/ \"/usr/local/tomcat/webapps/phpadmin/\" #Alias /brandpro \"/usr/local/tomcat/webapps/phppro/\" #Alias /archives/ \"/usr/local/tomcat/webapps/archives/\" #Alias /iptv/ \"/usr/local/tomcat/webapps/iptv/\" #Alias /statisticalreport \"/usr/local/tomcat/webapps/ROOT/program/stat/\" Alias /mantis \"/usr/local/tomcat/webapps/mantis/\" Alias /error/ \"/var/www/error/\" AddOutputFilter Includes html AddHandler type-map var Order allow,deny Allow from all LanguagePriority en es de fr ForceLanguagePriority Prefer Fallback # ErrorDocument 400 /error/HTTP_BAD_REQUEST.html.var # ErrorDocument 401 /error/HTTP_UNAUTHORIZED.html.var # ErrorDocument 403 /error/HTTP_FORBIDDEN.html.var # ErrorDocument 404 /error/HTTP_NOT_FOUND.html.var # ErrorDocument 405 /error/HTTP_METHOD_NOT_ALLOWED.html.var # ErrorDocument 408 /error/HTTP_REQUEST_TIME_OUT.html.var # ErrorDocument 410 /error/HTTP_GONE.html.var # ErrorDocument 411 /error/HTTP_LENGTH_REQUIRED.html.var # ErrorDocument 412 /error/HTTP_PRECONDITION_FAILED.html.var # ErrorDocument 413 /error/HTTP_REQUEST_ENTITY_TOO_LARGE.html.var # ErrorDocument 414 /error/HTTP_REQUEST_URI_TOO_LARGE.html.var # ErrorDocument 415 /error/HTTP_UNSUPPORTED_MEDIA_TYPE.html.var # ErrorDocument 500 /error/HTTP_INTERNAL_SERVER_ERROR.html.var # ErrorDocument 501 /error/HTTP_NOT_IMPLEMENTED.html.var # ErrorDocument 502 /error/HTTP_BAD_GATEWAY.html.var # ErrorDocument 503 /error/HTTP_SERVICE_UNAVAILABLE.html.var # ErrorDocument 506 /error/HTTP_VARIANT_ALSO_VARIES.html.var # The following directives modify normal HTTP response behavior to # handle known problems with browser implementations. # BrowserMatch \"Mozilla/2\" nokeepalive BrowserMatch \"MSIE 4\\.0b2;\" nokeepalive downgrade-1.0 force-response-1.0 BrowserMatch \"RealPlayer 4\\.0\" force-response-1.0 BrowserMatch \"Java/1\\.0\" force-response-1.0 BrowserMatch \"JDK/1\\.0\" force-response-1.0 # # The following directive disables redirects on non-GET requests for # a directory that does not include the trailing slash. This fixes a # problem with Microsoft WebFolders which does not appropriately handle # redirects for folders with DAV methods. # Same deal with Apple's DAV filesystem and Gnome VFS support for DAV. # BrowserMatch \"Microsoft Data Access Internet Publishing Provider\" redirect-carefully BrowserMatch \"MS FrontPage\" redirect-carefully BrowserMatch \"^WebDrive\" redirect-carefully BrowserMatch \"^WebDAVFS/1.[0123]\" redirect-carefully BrowserMatch \"^gnome-vfs/1.0\" redirect-carefully BrowserMatch \"^XML Spy\" redirect-carefully BrowserMatch \"^Dreamweaver-WebDAV-SCM1\" redirect-carefully # # Allow server status reports generated by mod_status, # with the URL of http://servername/server-status # Change the \".example.com\" to match your domain to enable. # # # Allow from .example.com # # Allow remote server configuration reports, with the URL of # http://servername/server-info (requires that mod_info.c be loaded). # Change the \".example.com\" to match your domain to enable. # # # Allow from .example.com # # Proxy Server directives. Uncomment the following lines to # enable the proxy server: # # # # Order deny,allow # Deny from all # Allow from .example.com # # Enable/disable the handling of HTTP/1.1 \"Via:\" headers. # (\"Full\" adds the server version; \"Block\" removes all outgoing Via: headers) # Set to one of: Off | On | Full | Block # #ProxyVia On # # To enable a cache of proxied content, uncomment the following lines. # See http://httpd.apache.org/docs/2.2/mod/mod_cache.html for more details. # # # CacheRoot \"/var/cache/mod_proxy\" # # # End of proxy directives. ### Section 3: Virtual Hosts # # VirtualHost: If you want to maintain multiple domains/hostnames on your # machine you can setup VirtualHost containers for them. Most configurations # use only name-based virtual hosts so the server doesn't need to worry about # IP addresses. This is indicated by the asterisks in the directives below. # # Please see the documentation at # # for further details before you try to setup virtual hosts. # # You may use the command line option '-S' to verify your virtual host # configuration. # # Use name-based virtual hosting. # NameVirtualHost *:80 NameVirtualHost *:443 # # NOTE: NameVirtualHost cannot be used without a port specifier # (e.g. :80) if mod_ssl is being used, due to the nature of the # SSL protocol. # # # VirtualHost example: # Almost any Apache directive may go into a VirtualHost container. # The first VirtualHost section is used for requests without a known # server name. # # # ServerAdmin webmaster@dummy-host.example.com # DocumentRoot /www/docs/dummy-host.example.com # ServerName dummy-host.example.com # ErrorLog logs/dummy-host.example.com-error_log # CustomLog logs/dummy-host.example.com-access_log common # ServerAdmin root@samicron.cn DocumentRoot /usr/local/tomcat/webapps/ROOT ServerName www.gudumami.cn DirectoryIndex index.html index.htm index.jsp index.php #ErrorDocument 404 /error.html #ErrorDocument 404 /404.php php_value auto_prepend_file /usr/local/tomcat/webapps/ROOT/ip1.php php_value auto_append_file /usr/local/tomcat/webapps/ROOT/ip2.php SetEnvIf Remote_Addr \"211\\.152\\.49\\.110\" dontlog SetEnvIf Request_URI \"\\.gif$\" dontlog SetEnvIf Request_URI \"\\.jpg$\" dontlog SetEnvIf Request_URI \"\\.css$\" dontlog SetEnvIf Request_URI \"\\.js$\" dontlog SetEnvIf Request_URI \"\\.swf$\" dontlog SetEnvIf Request_URI \"\\.ico$\" dontlog RewriteEngine on # RewriteLog /var/log/rewrite.log RewriteLoglevel 9 # RewriteCond %{REQUEST_URI} ^(/?)$ # RewriteRule ^(.*)$ /do.php?id=index [P,L] # RewriteCond %{REQUEST_URI} ^/beijing/$ # RewriteRule ^(.*)$ /beijing [R=301] # RewriteCond %{REQUEST_URI} ^/beijing$ # RewriteRule ^(.*)$ /beijing.php?id=index [P,L] RewriteCond %{HTTP_HOST}%{REQUEST_URI} ^gudumami\\.cn(.*)$ RewriteRule ^(.*)$ http://www.gudumami.cn%1 [R=301] RewriteMap vshop txt:/var/vhost.map RewriteCond %{REQUEST_URI} ^/([^/]+)(/?)$ RewriteCond ${vshop:%1} ^(/.*)$ RewriteRule ^(.*)$ http://%{SERVER_NAME}%1 RewriteCond %{REQUEST_URI} ^/project/brand([0-9]+).htm$ RewriteRule ^(.*)$ /project/brand.php?id=%1 RewriteCond %{REQUEST_URI} ^/program/([0-9]+)(-?)([0-9]*).htm$ RewriteRule ^(.*)$ /program/index.php RewriteCond %{REQUEST_URI} ^/program/([0-9]+)-([0-9]+)-([0-9]+).htm$ RewriteRule ^(.*)$ /program/index.php #dsd start RewriteCond %{REQUEST_URI} ^/sn/([a-z]{2}[0-9]{5})/menuadd([/]?)$ RewriteRule ^(.*)$ /usr/local/tomcat/webapps/ROOT/menu_add/index.php?shopid=%1 [L] RewriteCond %{REQUEST_URI} ^/sn/([a-z]{2}[0-9]{5})/menuadd/f([0-9])([/]?)$ RewriteRule ^(.*)$ /usr/local/tomcat/webapps/ROOT/menu_add/index.php?shopid=%1&flag=%2 [L] RewriteCond %{REQUEST_URI} ^/sn/([a-z]{2}[0-9]{5})/menuadd/confirm([/]?)$ RewriteRule ^(.*)$ /usr/local/tomcat/webapps/ROOT/menu_add/index_confirm.php?shopid=%1 [L] RewriteCond %{REQUEST_URI} ^/sn/([a-z]{2}[0-9]{5})/menuconfirm([/]?)$ RewriteRule ^(.*)$ /usr/local/tomcat/webapps/ROOT/menu_add/index_confirm.php?shopid=%1 [L] RewriteCond %{REQUEST_URI} ^/sn/([a-z]{2}[0-9]{5})/menuconfirm/f([0-9])([/]?)$ RewriteRule ^(.*)$ /usr/local/tomcat/webapps/ROOT/menu_add/index_confirm.php?shopid=%1&flag=%2 [L] RewriteCond %{REQUEST_URI} ^/sn/([a-z]{2}[0-9]{5})/menuadd/confirm/f([0-9])([/]?)$ RewriteRule ^(.*)$ /usr/local/tomcat/webapps/ROOT/menu_add/index_confirm.php?shopid=%1&flag=%2 [L] # RewriteCond %{REQUEST_URI} ^/sn/([a-z]{2}[0-9]{5})/menulist([/]?)$ # RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/show_menu.php?shopid=%1 [L] # RewriteCond %{REQUEST_URI} ^/sn/([a-z]{2}[0-9]{5})/menulist/([0-9]+)([/]?)$ # RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/detail_menu.php?shopid=%1&id=%2 [L] # RewriteCond %{REQUEST_URI} ^/sn/([a-z]{2}[0-9]{5})/menulist/p([0-9]+)([/]?)$ # RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/show_menu.php?shopid=%1&page=%2 [L] RewriteCond %{REQUEST_URI} ^/sn/([a-z]{2}[0-9]{5})/menulist/ajaxvote/i([0-9]+)([/]?)$ RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/ajax_add_menu_vote.php?shopid=%1&commentid=%2 [L] #dsd end #add by kousen 20101216 start #shop_url_rewrite RewriteCond %{REQUEST_URI} ^/sn/([^/]*)/([^/]*)(\\.htm|/?)$ RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_mapping.php?shopname=%1&keyword=%2 [L] RewriteCond %{REQUEST_URI} ^/sn/([^/]*)(\\.htm|/?)$ RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_mapping.php?shopname=%1 [L] RewriteCond %{REQUEST_URI} ^/sn/([^/]*)/([^/]*)/([^/]*)(\\.htm|/?)$ RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_mapping.php?shopname=%1&keyword=%2¶m=%3 [L] #add by kousen 20101216 end #exchange RewriteRule ^/point/ok/([\\w\\=]+)/$ /point/point.php?ok=$1 [L] RewriteRule ^/product/([^/]+)/([0-9_]*)$ /product/$1/$2/ [R] RewriteRule ^/product/([^/]+)/([0-9_]*)/$ /point/pointexchange.php?product_id=$1&inventory=$2 [L] RewriteRule ^/point/c([0-9]+)$ /point/c$1/ [R] RewriteRule ^/point/c([0-9]+)/$ /point/pointexchange.php?product_id=c$1 [L] RewriteRule ^/point/pointexchange$ /point/pointexchange/ [R] RewriteRule ^/point/pointexchange/$ /point/pointexchange.php [L] #test RewriteRule ^/test/([^/]*)/([^/]*) /usr/local/tomcat/webapps/ROOT/test.php?agv1=$1&agv2=$2 [L] #sh RewriteCond %{REQUEST_URI} ^/shop/(cs[6|7|8|9][^/]*)(/index\\.htm|/?)$ # RewriteRule ^(.*)$ /do.php?id=recommend/detail&shopid=%1 [P,L] # RewriteRule ^(.*)$ /shop/recommend.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=recommend [L] RewriteCond %{REQUEST_URI} ^/shop/(cs[6|7|8|9][^/]*)/map(\\.htm|/?)$ # RewriteRule ^(.*)$ /do.php?id=recommend/map&shopid=%1 [P,L] # RewriteRule ^(.*)$ /shop/recommendmap.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=map [L] RewriteCond %{REQUEST_URI} ^/shop/(cs[6|7|8|9][^/]*)/survey(\\.htm|/?)$ # RewriteRule ^(.*)$ /do.php?id=recommend/survey&shopid=%1 [P,L] # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=survey [L] RewriteCond %{REQUEST_URI} ^/shop/(cs[6|7|8|9][^/]*)/survey/p([1-9]+)(\\.htm|/?)$ # RewriteRule ^(.*)$ /do.php?id=recommend/survey&shopid=%1&offset=%2 [P,L] # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1&offset=%2 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&offset=%2&re_url=survey [L] # RewriteCond %{REQUEST_URI} ^/shop/(cs[^/]*)/survey(\\.htm|/?)$ # RewriteRule ^(.*)$ /do.php?id=recommend/pinglun&shopid=%1 [P,L] # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1 [P,L] RewriteCond %{REQUEST_URI} ^/shop/(cs[^/]*)/survey(/([0-9]*))?(\\.htm|/?)$ RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=survey&revid=%3 [L] RewriteCond %{REQUEST_URI} ^/shop/(cs[^/]*)/survey/p([1-9]+)(\\.htm|/?)$ # RewriteRule ^(.*)$ /do.php?id=recommend/pinglun&shopid=%1&offset=%2 [P,L] # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1&offset=%2 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&offset=%2&re_url=survey [L] #bj RewriteCond %{REQUEST_URI} ^/shop/(cb[7|8|9][^/]*)(/index\\.htm|/?)$ # RewriteRule ^(.*)$ /beijing.php?id=recommend/detail&shopid=%1 [P,L] # RewriteRule ^(.*)$ /shop/recommend.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=recommend [L] RewriteCond %{REQUEST_URI} ^/shop/(cb[7|8|9][^/]*)/map(\\.htm|/?)$ # RewriteRule ^(.*)$ /beijing.php?id=recommend/map&shopid=%1 [P,L] # RewriteRule ^(.*)$ /shop/recommendmap.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=map [L] RewriteCond %{REQUEST_URI} ^/shop/(cb[7|8|9][^/]*)/survey(\\.htm|/?)$ # RewriteRule ^(.*)$ /beijing.php?id=recommend/survey&shopid=%1 [P,L] # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=survey [L] RewriteCond %{REQUEST_URI} ^/shop/(cb[7|8|9][^/]*)/survey/p([1-9]+)(\\.htm|/?)$ # RewriteRule ^(.*)$ /beijing.php?id=recommend/survey&shopid=%1&offset=%2 [P,L] # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1&offset=%2 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&offset=%2&re_url=survey [L] RewriteCond %{REQUEST_URI} ^/shop/(cb[^/]*)/survey(\\.htm|/?)$ # RewriteRule ^(.*)$ /beijing.php?id=recommend/pinglun&shopid=%1 [P,L] # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=survey [L] RewriteCond %{REQUEST_URI} ^/shop/(cb[^/]*)/survey/p([1-9]+)(\\.htm|/?)$ # RewriteRule ^(.*)$ /beijing.php?id=recommend/pinglun&shopid=%1&offset=%2 [P,L] # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1&offset=%2 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&offset=%2&re_url=survey [L] #gz RewriteCond %{REQUEST_URI} ^/shop/(cg[7|8|9][^/]*)(/index\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/recommend.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=recommend [L] RewriteCond %{REQUEST_URI} ^/shop/(cg[7|8|9][^/]*)/map(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/recommendmap.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=map [L] RewriteCond %{REQUEST_URI} ^/shop/(cg[7|8|9][^/]*)/survey(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=survey [L] RewriteCond %{REQUEST_URI} ^/shop/(cg[7|8|9][^/]*)/survey/p([1-9]+)(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1&offset=%2 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&offset=%2&re_url=survey [L] RewriteCond %{REQUEST_URI} ^/shop/(cg[^/]*)/survey(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=survey [L] RewriteCond %{REQUEST_URI} ^/shop/(cg[^/]*)/survey/p([1-9]+)(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1&offset=%2 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&offset=%2&re_url=survey [L] #tj RewriteCond %{REQUEST_URI} ^/shop/(ct[7|8|9][^/]*)(/index\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/recommend.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=recommend [L] RewriteCond %{REQUEST_URI} ^/shop/(ct[7|8|9][^/]*)/map(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/recommendmap.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=map [L] RewriteCond %{REQUEST_URI} ^/shop/(ct[7|8|9][^/]*)/survey(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=survey [L] RewriteCond %{REQUEST_URI} ^/shop/(ct[7|8|9][^/]*)/survey/p([1-9]+)(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1&offset=%2 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&offset=%2&re_url=survey [L] RewriteCond %{REQUEST_URI} ^/shop/(ct[^/]*)/survey(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=survey [L] RewriteCond %{REQUEST_URI} ^/shop/(ct[^/]*)/survey/p([1-9]+)(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1&offset=%2 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&offset=%2&re_url=survey [L] #dl RewriteCond %{REQUEST_URI} ^/shop/(cd[7|8|9][^/]*)(/index\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/recommend.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=recommend [L] RewriteCond %{REQUEST_URI} ^/shop/(cd[7|8|9][^/]*)/map(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/recommendmap.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=map [L] RewriteCond %{REQUEST_URI} ^/shop/(cd[7|8|9][^/]*)/survey(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=survey [L] RewriteCond %{REQUEST_URI} ^/shop/(cd[7|8|9][^/]*)/survey/p([1-9]+)(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1&offset=%2 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&offset=%2&re_url=survey [L] RewriteCond %{REQUEST_URI} ^/shop/(cd[^/]*)/survey(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=survey [L] RewriteCond %{REQUEST_URI} ^/shop/(cd[^/]*)/survey/p([1-9]+)(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1&offset=%2 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&offset=%2&re_url=survey [L] #qd RewriteCond %{REQUEST_URI} ^/shop/(cq[7|8|9][^/]*)(/index\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/recommend.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=recommend [L] RewriteCond %{REQUEST_URI} ^/shop/(cq[7|8|9][^/]*)/map(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/recommendmap.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=map [L] RewriteCond %{REQUEST_URI} ^/shop/(cq[7|8|9][^/]*)/survey(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=survey [L] RewriteCond %{REQUEST_URI} ^/shop/(cq[7|8|9][^/]*)/survey/p([1-9]+)(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1&offset=%2 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&offset=%2&re_url=survey [L] RewriteCond %{REQUEST_URI} ^/shop/(cq[^/]*)/survey(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=survey [L] RewriteCond %{REQUEST_URI} ^/shop/(cq[^/]*)/survey/p([1-9]+)(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1&offset=%2 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&offset=%2&re_url=survey [L] #hangzhou RewriteCond %{REQUEST_URI} ^/shop/(ch[7|8|9][^/]*)(/index\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/recommend.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=recommend [L] RewriteCond %{REQUEST_URI} ^/shop/(ch[7|8|9][^/]*)/map(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/recommendmap.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=map [L] RewriteCond %{REQUEST_URI} ^/shop/(ch[7|8|9][^/]*)/survey(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=survey [L] RewriteCond %{REQUEST_URI} ^/shop/(ch[7|8|9][^/]*)/survey/p([1-9]+)(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1&offset=%2 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&offset=%2&re_url=survey [L] RewriteCond %{REQUEST_URI} ^/shop/(ch[^/]*)/survey(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=survey [L] RewriteCond %{REQUEST_URI} ^/shop/(ch[^/]*)/survey/p([1-9]+)(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1&offset=%2 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&offset=%2&re_url=survey [L] #suzhou RewriteCond %{REQUEST_URI} ^/shop/(su[7|8|9][^/]*)(/index\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/recommend.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=recommend [L] RewriteCond %{REQUEST_URI} ^/shop/(su[7|8|9][^/]*)/map(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/recommendmap.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=map [L] RewriteCond %{REQUEST_URI} ^/shop/(su[7|8|9][^/]*)/survey(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=survey [L] RewriteCond %{REQUEST_URI} ^/shop/(su[7|8|9][^/]*)/survey/p([1-9]+)(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1&offset=%2 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&offset=%2&re_url=survey [L] RewriteCond %{REQUEST_URI} ^/shop/(su[^/]*)/survey(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=survey [L] RewriteCond %{REQUEST_URI} ^/shop/(su[^/]*)/survey/p([1-9]+)(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1&offset=%2 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&offset=%2&re_url=survey [L] #chengdu RewriteCond %{REQUEST_URI} ^/shop/(cc[7|8|9][^/]*)(/index\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/recommend.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=recommend [L] RewriteCond %{REQUEST_URI} ^/shop/(cc[7|8|9][^/]*)/map(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/recommendmap.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=map [L] RewriteCond %{REQUEST_URI} ^/shop/(cc[7|8|9][^/]*)/survey(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=survey [L] RewriteCond %{REQUEST_URI} ^/shop/(cc[7|8|9][^/]*)/survey/p([1-9]+)(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1&offset=%2 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&offset=%2&re_url=survey [L] RewriteCond %{REQUEST_URI} ^/shop/(cc[^/]*)/survey(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=survey [L] RewriteCond %{REQUEST_URI} ^/shop/(cc[^/]*)/survey/p([1-9]+)(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1&offset=%2 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&offset=%2&re_url=survey [L] #chongqing RewriteCond %{REQUEST_URI} ^/shop/(co[7|8|9][^/]*)(/index\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/recommend.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=recommend [L] RewriteCond %{REQUEST_URI} ^/shop/(co[7|8|9][^/]*)/map(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/recommendmap.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /shop/sn_redirect.php?shopid=%1&re_url=map [L] RewriteCond %{REQUEST_URI} ^/shop/(co[7|8|9][^/]*)/survey(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=survey [L] RewriteCond %{REQUEST_URI} ^/shop/(co[7|8|9][^/]*)/survey/p([1-9]+)(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1&offset=%2 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&offset=%2&re_url=survey [L] RewriteCond %{REQUEST_URI} ^/shop/(co[^/]*)/survey(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=survey [L] RewriteCond %{REQUEST_URI} ^/shop/(co[^/]*)/survey/p([1-9]+)(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1&offset=%2 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&offset=%2&re_url=survey [L] #wuhan RewriteCond %{REQUEST_URI} ^/shop/(cw[7|8|9][^/]*)(/index\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/recommend.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=recommend [L] RewriteCond %{REQUEST_URI} ^/shop/(cw[7|8|9][^/]*)/map(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/recommendmap.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=map [L] RewriteCond %{REQUEST_URI} ^/shop/(cw[7|8|9][^/]*)/survey(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=survey [L] RewriteCond %{REQUEST_URI} ^/shop/(cw[7|8|9][^/]*)/survey/p([1-9]+)(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1&offset=%2 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&offset=%2&re_url=survey [L] RewriteCond %{REQUEST_URI} ^/shop/(cw[^/]*)/survey(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=survey [L] RewriteCond %{REQUEST_URI} ^/shop/(cw[^/]*)/survey/p([1-9]+)(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1&offset=%2 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&offset=%2&re_url=survey [L] #nanjing RewriteCond %{REQUEST_URI} ^/shop/(cn[7|8|9][^/]*)(/index\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/recommend.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=recommend [L] RewriteCond %{REQUEST_URI} ^/shop/(cn[7|8|9][^/]*)/map(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/recommendmap.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=map [L] RewriteCond %{REQUEST_URI} ^/shop/(cn[7|8|9][^/]*)/survey(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=survey [L] RewriteCond %{REQUEST_URI} ^/shop/(cn[7|8|9][^/]*)/survey/p([1-9]+)(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1&offset=%2 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&offset=%2&re_url=survey [L] RewriteCond %{REQUEST_URI} ^/shop/(cn[^/]*)/survey(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=survey [L] RewriteCond %{REQUEST_URI} ^/shop/(cn[^/]*)/survey/p([1-9]+)(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1&offset=%2 [L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&offset=%2&re_url=survey [L] #shenzhen RewriteCond %{REQUEST_URI} ^/shop/(sz[7|8|9][^/]*)(/index\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/recommend.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=recommend [L] RewriteCond %{REQUEST_URI} ^/shop/(sz[7|8|9][^/]*)/map(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/recommendmap.php?shopid=%1 [L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=map [L] RewriteCond %{REQUEST_URI} ^/shop/(sz[7|8|9][^/]*)/survey(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=survey [L] RewriteCond %{REQUEST_URI} ^/shop/(sz[7|8|9][^/]*)/survey/p([1-9]+)(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1&offset=%2 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&offset=%2&re_url=survey [L] RewriteCond %{REQUEST_URI} ^/shop/(sz[^/]*)/survey(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=survey [L] RewriteCond %{REQUEST_URI} ^/shop/(sz[^/]*)/survey/p([1-9]+)(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/pinglun.php?shopid=%1&offset=%2 [P,L] RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&offset=%2&re_url=survey [L] #/shanghai/en RewriteRule ^/en/shop/(cs[0-9]{5})/(index.html?)?$ /usr/local/tomcat/webapps/home/www/enshanghai/docroot/en/shop/shop_top.php?shop_id=$1 [L,NC] RewriteRule ^/en/shop/(cs[0-9]{5})/(menu([1-8]).html?)$ /usr/local/tomcat/webapps/home/www/enshanghai/docroot/en/shop/menu.php?shop_id=$1&menu=$3 [L] RewriteRule ^/en/shop/(cs[0-9]{5})/(map.html?)?$ /usr/local/tomcat/webapps/home/www/enshanghai/docroot/en/shop/map.php?shop_id=$1 [L] RewriteRule ^/en/shop/(cs[0-9]{5})/(map_print.html?)?$ /usr/local/tomcat/webapps/home/www/enshanghai/docroot/en/shop/map_print.php?shop_id=$1 [L] #/beijing/en RewriteRule ^/en/shop/(cb[0-9]{5})/(index.html?)?$ /usr/local/tomcat/webapps/home/www/enshanghai/docroot/en/shop/shop_top.php?shop_id=$1 [L,NC] RewriteRule ^/en/shop/(cb[0-9]{5})/(menu([1-8]).html?)$ /usr/local/tomcat/webapps/home/www/enshanghai/docroot/en/shop/menu.php?shop_id=$1&menu=$3 [L] RewriteRule ^/en/shop/(cb[0-9]{5})/(map.html?)?$ /usr/local/tomcat/webapps/home/www/enshanghai/docroot/en/shop/map.php?shop_id=$1 [L] RewriteRule ^/en/shop/(cb[0-9]{5})/(map_print.html?)?$ /usr/local/tomcat/webapps/home/www/enshanghai/docroot/en/shop/map_print.php?shop_id=$1 [L] #/shanghai/jp RewriteCond %{REQUEST_URI} ^/shanghai/jp/(cs[0-9]{5})/(index.html?)?$ RewriteRule ^(.*)$ /jp/shop/%1/%2 [R=301] RewriteCond %{REQUEST_URI} ^/shanghai/jp/(cs[0-9]{5})/(menu([1-8]).html?)?$ RewriteRule ^(.*)$ /jp/shop/%1/%2 [R=301] RewriteCond %{REQUEST_URI} ^/shanghai/jp/(cs[0-9]{5})/(map.html?)?$ RewriteRule ^(.*)$ /jp/shop/%1/%2 [R=301] RewriteCond %{REQUEST_URI} ^/shanghai/jp/(cs[0-9]{5})/(map_print.html?)?$ RewriteRule ^(.*)$ /jp/shop/%1/%2 [R=301] # RewriteCond %{REQUEST_URI} ^/shanghai/jp/search/([^/]+)$ # RewriteRule ^(.*)$ /jp/search/%1 [R=301] RewriteCond %{REQUEST_URI} ^/shanghai/jp/?$ RewriteRule ^(.*)$ /jp/ [R=301] RewriteRule ^/jp/shop/(cs[0-9]{5})/(index.html?)?$ /usr/local/tomcat/webapps/home/www/shanghai/docroot/jp/shop/shop_top.php?shop_id=$1 [L,NC] RewriteRule ^/jp/shop/(cs[0-9]{5})/(menu([1-8]).html?)$ /usr/local/tomcat/webapps/home/www/shanghai/docroot/jp/shop/menu.php?shop_id=$1&menu=$3 [L] RewriteRule ^/jp/shop/(cs[0-9]{5})/(map.html?)?$ /usr/local/tomcat/webapps/home/www/shanghai/docroot/jp/shop/map.php?shop_id=$1 [L] RewriteRule ^/jp/shop/(cs[0-9]{5})/(map_print.html?)?$ /usr/local/tomcat/webapps/home/www/shanghai/docroot/jp/shop/map_print.php?shop_id=$1 [L] RewriteRule ^/jp/shop/(cs[0-9]{5})/(taxi_card.html?)?$ /usr/local/tomcat/webapps/home/www/shanghai/docroot/jp/shop/taxi_card.php?shop_id=$1 [L] RewriteCond %{REQUEST_URI} ^/shanghai/jp/(cs[0-9]{5})/(taxi_card.html?)?$ RewriteRule ^(.*)$ /jp/shop/%1/%2 [R=301] #/whenever RewriteRule ^/jp/shop/(cs[0-9]{5})/img/(cs[0-9]{5}_[1-9].jpg?)?$ /usr/local/tomcat/webapps/jp/shop/$1/img/$2 [L] #/beijing/jp RewriteRule ^/beijing/jp/(cb[0-9]{5})/(index.html?)?$ /usr/local/tomcat/webapps/home/www/beijing/docroot/jp/shop/shop_top.php?shop_id=$1 [L] RewriteRule ^/beijing/jp/(cb[0-9]{5})/(menu([1-8]).html?)$ /usr/local/tomcat/webapps/home/www/beijing/docroot/jp/shop/menu.php?shop_id=$1&menu=$3 [L] RewriteRule ^/beijing/jp/(cb[0-9]{5})/(map.html?)?$ /usr/local/tomcat/webapps/home/www/beijing/docroot/jp/shop/map.php?shop_id=$1 [L] RewriteRule ^/beijing/jp/(cb[0-9]{5})/(map_print.html?)?$ /usr/local/tomcat/webapps/home/www/beijing/docroot/jp/shop/map_print.php?shop_id=$1 [L] RewriteRule ^/beijing/jp/(cb[0-9]{5})/(taxi_card.html?)?$ /usr/local/tomcat/webapps/home/www/beijing/docroot/jp/shop/taxi_card.php?shop_id=$1 [L] #/tianjin/jp RewriteRule ^/tianjin/jp/(ct[0-9]{5})/(index.html?)?$ /usr/local/tomcat/webapps/home/www/tianjin/docroot/jp/shop/shop_top.php?shop_id=$1 [L] RewriteRule ^/tianjin/jp/(ct[0-9]{5})/(menu([1-8]).html?)$ /usr/local/tomcat/webapps/home/www/tianjin/docroot/jp/shop/menu.php?shop_id=$1&menu=$3 [L] RewriteRule ^/tianjin/jp/(ct[0-9]{5})/(map.html?)?$ /usr/local/tomcat/webapps/home/www/tianjin/docroot/jp/shop/map.php?shop_id=$1 [L] RewriteRule ^/tianjin/jp/(ct[0-9]{5})/(map_print.html?)?$ /usr/local/tomcat/webapps/home/www/tianjin/docroot/jp/shop/map_print.php?shop_id=$1 [L] #/guangzhou/jp RewriteRule ^/guangzhou/jp/(cg[0-9]{5})/(index.html?)?$ /usr/local/tomcat/webapps/home/www/guangzhou/docroot/jp/shop/shop_top.php?shop_id=$1 [L] RewriteRule ^/guangzhou/jp/(cg[0-9]{5})/(menu([1-8]).html?)$ /usr/local/tomcat/webapps/home/www/guangzhou/docroot/jp/shop/menu.php?shop_id=$1&menu=$3 [L] RewriteRule ^/guangzhou/jp/(cg[0-9]{5})/(map.html?)?$ /usr/local/tomcat/webapps/home/www/guangzhou/docroot/jp/shop/map.php?shop_id=$1 [L] RewriteRule ^/guangzhou/jp/(cg[0-9]{5})/(map_print.html?)?$ /usr/local/tomcat/webapps/home/www/guangzhou/docroot/jp/shop/map_print.php?shop_id=$1 [L] #/qingdao/jp RewriteRule ^/qingdao/jp/(cq[0-9]{5})/(index.html?)?$ /usr/local/tomcat/webapps/home/www/qingdao/docroot/jp/shop/shop_top.php?shop_id=$1 [L,NC] RewriteRule ^/qingdao/jp/(cq[0-9]{5})/(menu([1-8]).html?)$ /usr/local/tomcat/webapps/home/www/qingdao/docroot/jp/shop/menu.php?shop_id=$1&menu=$3 [L] RewriteRule ^/qingdao/jp/(cq[0-9]{5})/(map.html?)?$ /usr/local/tomcat/webapps/home/www/qingdao/docroot/jp/shop/map.php?shop_id=$1 [L] RewriteRule ^/qingdao/jp/(cq[0-9]{5})/(map_print.html?)?$ /usr/local/tomcat/webapps/home/www/qingdao/docroot/jp/shop/map_print.php?shop_id=$1 [L] #/dalian/jp RewriteRule ^/dalian/jp/(cd[0-9]{5})/(index.html?)?$ /usr/local/tomcat/webapps/home/www/dalian/docroot/jp/shop/shop_top.php?shop_id=$1 [L,NC] RewriteRule ^/dalian/jp/(cd[0-9]{5})/(menu([1-8]).html?)$ /usr/local/tomcat/webapps/home/www/dalian/docroot/jp/shop/menu.php?shop_id=$1&menu=$3 [L] RewriteRule ^/dalian/jp/(cd[0-9]{5})/(map.html?)?$ /usr/local/tomcat/webapps/home/www/dalian/docroot/jp/shop/map.php?shop_id=$1 [L] RewriteRule ^/dalian/jp/(cd[0-9]{5})/(map_print.html?)?$ /usr/local/tomcat/webapps/home/www/dalian/docroot/jp/shop/map_print.php?shop_id=$1 [L] #/suzhou/jp RewriteRule ^/suzhou/jp/(su[0-9]{5})/(index.html?)?$ /usr/local/tomcat/webapps/home/www/suzhou/docroot/jp/shop/shop_top.php?shop_id=$1 [L,NC] RewriteRule ^/suzhou/jp/(su[0-9]{5})/(menu([1-8]).html?)$ /usr/local/tomcat/webapps/home/www/suzhou/docroot/jp/shop/menu.php?shop_id=$1&menu=$3 [L] RewriteRule ^/suzhou/jp/(su[0-9]{5})/(map.html?)?$ /usr/local/tomcat/webapps/home/www/suzhou/docroot/jp/shop/map.php?shop_id=$1 [L] RewriteRule ^/suzhou/jp/(su[0-9]{5})/(map_print.html?)?$ /usr/local/tomcat/webapps/home/www/suzhou/docroot/jp/shop/map_print.php?shop_id=$1 [L] #/hangzhou/jp RewriteRule ^/hangzhou/jp/(ch[0-9]{5})/(index.html?)?$ /usr/local/tomcat/webapps/home/www/hangzhou/docroot/jp/shop/shop_top.php?shop_id=$1 [L,NC] RewriteRule ^/hangzhou/jp/(ch[0-9]{5})/(menu([1-8]).html?)$ /usr/local/tomcat/webapps/home/www/hangzhou/docroot/jp/shop/menu.php?shop_id=$1&menu=$3 [L] RewriteRule ^/hangzhou/jp/(ch[0-9]{5})/(map.html?)?$ /usr/local/tomcat/webapps/home/www/hangzhou/docroot/jp/shop/map.php?shop_id=$1 [L] RewriteRule ^/hangzhou/jp/(ch[0-9]{5})/(map_print.html?)?$ /usr/local/tomcat/webapps/home/www/hangzhou/docroot/jp/shop/map_print.php?shop_id=$1 [L] #/chongqing/jp RewriteRule ^/chongqing/jp/(co[0-9]{5})/(index.html?)?$ /usr/local/tomcat/webapps/home/www/chongqing/docroot/jp/shop/shop_top.php?shop_id=$1 [L,NC] RewriteRule ^/chongqing/jp/(co[0-9]{5})/(menu([1-8]).html?)$ /usr/local/tomcat/webapps/home/www/chongqing/docroot/jp/shop/menu.php?shop_id=$1&menu=$3 [L] RewriteRule ^/chongqing/jp/(co[0-9]{5})/(map.html?)?$ /usr/local/tomcat/webapps/home/www/chongqing/docroot/jp/shop/map.php?shop_id=$1 [L] RewriteRule ^/chongqing/jp/(co[0-9]{5})/(map_print.html?)?$ /usr/local/tomcat/webapps/home/www/chongqing/docroot/jp/shop/map_print.php?shop_id=$1 [L] #/chengdu/jp RewriteRule ^/chengdu/jp/(cc[0-9]{5})/(index.html?)?$ /usr/local/tomcat/webapps/home/www/chengdu/docroot/jp/shop/shop_top.php?shop_id=$1 [L,NC] RewriteRule ^/chengdu/jp/(cc[0-9]{5})/(menu([1-8]).html?)$ /usr/local/tomcat/webapps/home/www/chengdu/docroot/jp/shop/menu.php?shop_id=$1&menu=$3 [L] RewriteRule ^/chengdu/jp/(cc[0-9]{5})/(map.html?)?$ /usr/local/tomcat/webapps/home/www/chengdu/docroot/jp/shop/map.php?shop_id=$1 [L] RewriteRule ^/chengdu/jp/(cc[0-9]{5})/(map_print.html?)?$ /usr/local/tomcat/webapps/home/www/chengdu/docroot/jp/shop/map_print.php?shop_id=$1 [L] #/wuhan/jp RewriteRule ^/wuhan/jp/(cw[0-9]{5})/(index.html?)?$ /usr/local/tomcat/webapps/home/www/wuhan/docroot/jp/shop/shop_top.php?shop_id=$1 [L,NC] RewriteRule ^/wuhan/jp/(cw[0-9]{5})/(menu([1-8]).html?)$ /usr/local/tomcat/webapps/home/www/wuhan/doc root/jp/shop/menu.php?shop_id=$1&menu=$3 [L] RewriteRule ^/wuhan/jp/(cw[0-9]{5})/(map.html?)?$ /usr/local/tomcat/webapps/home/www/wuhan/docroot/jp/shop/map.php?shop_id=$1 [L] RewriteRule ^/wuhan/jp/(cw[0-9]{5})/(map_print.html?)?$ /usr/local/tomcat/webapps/home/www/wuhan/docroot/jp/shop/map_print.php?shop_id=$1 [L] #/shenzhen/jp RewriteRule ^/shenzhen/jp/(sz[0-9]{5})/(index.html?)?$ /usr/local/tomcat/webapps/home/www/shenzhen/docroot/jp/shop/shop_top.php?shop_id=$1 [L,NC] RewriteRule ^/shenzhen/jp/(sz[0-9]{5})/(menu([1-8]).html?)$ /usr/local/tomcat/webapps/home/www/shenzhen/docroot/jp/shop/menu.php?shop_id=$1&menu=$3 [L] RewriteRule ^/shenzhen/jp/(sz[0-9]{5})/(map.html?)?$ /usr/local/tomcat/webapps/home/www/shenzhen/docroot/jp/shop/map.php?shop_id=$1 [L] RewriteRule ^/shenzhen/jp/(sz[0-9]{5})/(map_print.html?)?$ /usr/local/tomcat/webapps/home/www/shenzhen/docroot/jp/shop/map_print.php?shop_id=$1 [L] #/nanjing/jp RewriteRule ^/nanjing/jp/(cn[0-9]{5})/(index.html?)?$ /usr/local/tomcat/webapps/home/www/nanjing/docroot/jp/shop/shop_top.php?shop_id=$1 [L,NC] RewriteRule ^/nanjing/jp/(cn[0-9]{5})/(menu([1-8]).html?)$ /usr/local/tomcat/webapps/home/www/nanjing/docroot/jp/shop/menu.php?shop_id=$1&menu=$3 [L] RewriteRule ^/nanjing/jp/(cn[0-9]{5})/(map.html?)?$ /usr/local/tomcat/webapps/home/www/nanjing/docroot/jp/shop/map.php?shop_id=$1 [L] RewriteRule ^/nanjing/jp/(cn[0-9]{5})/(map_print.html?)?$ /usr/local/tomcat/webapps/home/www/nanjing/docroot/jp/shop/map_print.php?shop_id=$1 [L] #brand # RewriteCond %{REQUEST_URI} ^/brand/([a-z0-9A-Z_]+)(/?)$ # RewriteRule ^(.*)$ /brand/index.php?dispBrand=%1 [P,L] # RewriteCond %{REQUEST_URI} ^/brand/([^/]*)/page([1-4]?)(\\.htm|/?)$ # RewriteRule ^(.*)$ /brand/define.php?dispBrand=%1&dispPage=%2 [P,L] RewriteRule ^/brand/([^/]*)/shop/p([0-9]+)/?$ /usr/local/tomcat/webapps/smarty/brand/docroot/$1/shop/index. html?page=$2 [L] RewriteRule ^/brand/img_u/shop/brand/([a-zA-Z0-9_]*)\\.(jpg|gif|bmp)(.*) /mnt/smb/store/img_u/shop/brand/$1.$2$3 [L] # RewriteRule ^/brand/?$ /usr/local/tomcat/webapps/ROOT/do.php?id=common/brands [L] RewriteCond %{QUERY_STRING} ^id=common/brands$ RewriteRule ^/do.php$ /brand/? [R=301,L] #hotarea # RewriteRule ^/hot_area/?$ /hot_area00/ [P,L] # RewriteRule ^/hotarea/(xintiandi|tianzifang)/?$ /hotarea/$1.html [P,L] # RewriteRule ^/hotarea/(xintiandi|tianzifang)/?$ /usr/local/tomcat/webapps/ROOT/hotarea/$1.html [L] # RewriteRule ^/hotarea/XTD([1-9]{1}[0-9]+).html$ /hot_area/index.php?area0=xintiandi&page=$1 [P,L] # RewriteRule ^/hotarea/XTD([2-9]{1}).html$ /hot_area/index.php?area0=xintiandi&page=$1 [P,L] # RewriteRule ^/hotarea/TZF([1-9]{1}[0-9]+).html$ /hot_area/index.php?area0=tianzifang&page=$1 [P,L] # RewriteRule ^/hotarea/TZF([2-9]{1}).html$ /hot_area/index.php?area0=tianzifang&page=$1 [P,L] #xindengchang add by DSD xl RewriteRule ^/xindengchang/search/([^/]*)/$ /usr/local/tomcat/webapps/smarty/xindengchang/docroot/index.php?month=$1 [L] RewriteRule ^/xindengchang/search/([^/]*)/([^/]*)/([^/]*)/$ /usr/local/tomcat/webapps/smarty/xindengchang/docroot/index.php?month=$1&$2_id=$3&$2=$3 [L] RewriteRule ^/xindengchang/search/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/$ /usr/local/tomcat/webapps/smarty/xindengchang/docroot/index.php?month=$1&$2=$3&$4=$5&$2_id=$3&$4_id=$5 [L] RewriteRule ^/xindengchang/search/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/$ /usr/local/tomcat/webapps/smarty/xindengchang/docroot/index.php?month=$1&$2=$3&$4=$5&$6=$7&$2_id=$3&$4_id=$5&$6_id=$7 [L] RewriteRule ^/xindengchang/search/?$ /usr/local/tomcat/webapps/smarty/xindengchang/docroot/index.php [L] RewriteRule ^/xindengchang/search/([^/]*)/([^/]*)/$ /usr/local/tomcat/webapps/smarty/xindengchang/docroot/index.php?$1_id=$2&$1=$2 [L] RewriteRule ^/xindengchang/search/([^/]*)/([^/]*)/([^/]*)/([^/]*)/$ /usr/local/tomcat/webapps/smarty/xindengchang/docroot/index.php?$1=$2&$3=$4&$1_id=$2&$3_id=$4 [L] RewriteRule ^/xindengchang/search/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/$ /usr/local/tomcat/webapps/smarty/xindengchang/docroot/index.php?$1=$2&$3=$4&$5=$6&$1_id=$2&$3_id=$4&$5_id=$6 [L] RewriteRule ^/xindengchang/simple/([^/]*)/$ /usr/local/tomcat/webapps/smarty/xindengchang/docroot/simple.php?month=$1 [L] RewriteRule ^/xindengchang/simple/([^/]*)/([^/]*)/([^/]*)/$ /usr/local/tomcat/webapps/smarty/xindengchang/docroot/simple.php?month=$1&$2_id=$3&$2=$3 [L] RewriteRule ^/xindengchang/simple/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/$ /usr/local/tomcat/webapps/smarty/xindengchang/docroot/simple.php?month=$1&$2=$3&$4=$5&$2_id=$3&$4_id=$5 [L] RewriteRule ^/xindengchang/simple/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/$ /usr/local/tomcat/webapps/smarty/xindengchang/docroot/simple.php?month=$1&$2=$3&$4=$5&$6=$7&$2_id=$3&$4_id=$5&$6_id=$7 [L] RewriteRule ^/xindengchang/simple/?$ /usr/local/tomcat/webapps/smarty/xindengchang/docroot/simple.php [L] RewriteRule ^/xindengchang/simple/([^/]*)/([^/]*)/$ /usr/local/tomcat/webapps/smarty/xindengchang/docroot/simple.php?$1_id=$2&$1=$2 [L] RewriteRule ^/xindengchang/simple/([^/]*)/([^/]*)/([^/]*)/([^/]*)/$ /usr/local/tomcat/webapps/smarty/xindengchang/docroot/simple.php?$1=$2&$3=$4&$1_id=$2&$3_id=$4 [L] #xindengchang_bj add by DSD xl RewriteRule ^/beijing/xindengchang/search/([^/]*)/$ /usr/local/tomcat/webapps/smarty/xindengchang_bj/docroot/index.php?month=$1 [L] RewriteRule ^/beijing/xindengchang/search/([^/]*)/([^/]*)/([^/]*)/$ /usr/local/tomcat/webapps/smarty/xindengchang_bj/docroot/index.php?month=$1&$2_id=$3&$2=$3 [L] RewriteRule ^/beijing/xindengchang/search/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/$ /usr/local/tomcat/webapps/smarty/xindengchang_bj/docroot/index.php?month=$1&$2=$3&$4=$5&$2_id=$3&$4_id=$5 [L] RewriteRule ^/beijing/xindengchang/search/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/$ /usr/local/tomcat/webapps/smarty/xindengchang_bj/docroot/index.php?month=$1&$2=$3&$4=$5&$6=$7&$2_i d=$3&$4_id=$5&$6_id=$7 [L] RewriteRule ^/beijing/xindengchang/search/?$ /usr/local/tomcat/webapps/smarty/xindengchang_bj/docroot/index.php [L] RewriteRule ^/beijing/xindengchang/search/([^/]*)/([^/]*)/$ /usr/local/tomcat/webapps/smarty/xindengchang_bj/docroot/index.php?$1_id=$2&$1=$2 [L] RewriteRule ^/beijing/xindengchang/search/([^/]*)/([^/]*)/([^/]*)/([^/]*)/$ /usr/local/tomcat/webapps/smarty/xindengchang_bj/docroot/index.php?$1=$2&$3=$4&$1_id=$2&$3_id=$4 [L] RewriteRule ^/beijing/xindengchang/search/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/$ /usr/local/tomcat/webapps/smarty/xindengchang_bj/docroot/index.php?$1=$2&$3=$4&$5=$6&$1_id=$2&$3_id=$4&$5_id=$6 [L] RewriteRule ^/beijing/xindengchang/simple/([^/]*)/$ /usr/local/tomcat/webapps/smarty/xindengchang_bj/docroot/simple.php?month=$1 [L] RewriteRule ^/beijing/xindengchang/simple/([^/]*)/([^/]*)/([^/]*)/$ /usr/local/tomcat/webapps/smarty/xindengchang_bj/docroot/simple.php?month=$1&$2_id=$3&$2=$3 [L] RewriteRule ^/beijing/xindengchang/simple/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/$ /usr/local/tomcat/webapps/smarty/xindengchang_bj/docroot/simple.php?month=$1&$2=$3&$4=$5&$2_id=$3&$4_id=$5 [L] RewriteRule ^/beijing/xindengchang/simple/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/$ /usr/local/tomcat/webapps/smarty/xindengchang_bj/docroot/simple.php?month=$1&$2=$3&$4=$5&$6=$7&$2_id=$3&$4_id=$5&$6_id=$7 [L] RewriteRule ^/beijing/xindengchang/simple/?$ /usr/local/tomcat/webapps/smarty/xindengchang_bj/docroot/simple.php [L] RewriteRule ^/beijing/xindengchang/simple/([^/]*)/([^/]*)/$ /usr/local/tomcat/webapps/smarty/xindengchang_bj/docroot/simple.php?$1_id=$2&$1=$2 [L] RewriteRule ^/beijing/xindengchang/simple/([^/]*)/([^/]*)/([^/]*)/([^/]*)/$ /usr/local/tomcat/webapps/smarty/xindengchang_bj/docroot/simple.php?$1=$2&$3=$4&$1_id=$2&$3_id=$4 [L] RewriteRule ^/beijing/xindengchang/simple/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/$ /usr/local/tomcat/webapps/smarty/xindengchang_bj/docroot/simple.php?$1=$2&$3=$4&$5=$6&$1_id=$2&$3_id=$4 &$5_id=$6 [L] #recommend RewriteCond %{REQUEST_URI} ^/campaign/recommend/search/?$ RewriteRule ^(.*)$ /campaign/recommend/index.php [P,L] RewriteCond %{REQUEST_URI} ^/campaign/recommend/search/([^/]*)/([^/]*)/$ RewriteRule ^(.*)$ /campaign/recommend/index.php?%1_id=%2&%1=%2 [P,L] RewriteCond %{REQUEST_URI} ^/campaign/recommend/search/([^/]*)/([^/]*)/([^/]*)/([^/]*)/$ RewriteRule ^(.*)$ /campaign/recommend/index.php?%1=%2&%3=%4&%1_id=%2&%3_id=%4 [P,L] RewriteCond %{REQUEST_URI} ^/campaign/recommend/search/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/$ RewriteRule ^(.*)$ /campaign/recommend/index.php?%1=%2&%3=%4&%5=%6&%1_id=%2&%3_id=%4&%5_id=%6 [P,L] #course RewriteRule ^/course/?$ /usr/local/tomcat/webapps/smarty/course/docroot/index.php [L] RewriteRule ^/course/all/?$ /usr/local/tomcat/webapps/smarty/course/docroot/search.php [L] RewriteRule ^/course/all/p([^/]*)/?$ /usr/local/tomcat/webapps/smarty/course/docroot/search.php?page=$1 [L] RewriteRule ^/course/tag/([^/]*)/?$ /usr/local/tomcat/webapps/smarty/course/docroot/search.php?tag_id=$1 [L] RewriteRule ^/course/tag/([^/]*)/p([^/]*)/?$ /usr/local/tomcat/webapps/smarty/course/docroot/search.php?tag_id=$1&page=$2 [L] RewriteRule ^/course/AREA_([^/]*)/?$ /usr/local/tomcat/webapps/smarty/course/docroot/search.php?area_id=AREA_$1 [L] RewriteRule ^/course/AREA_([^/]*)/p([^/]*)/?$ /usr/local/tomcat/webapps/smarty/course/docroot/search.php?area_id=AREA_$1&page=$2 [L] RewriteRule ^/course/FOOD_([^/]*)/?$ /usr/local/tomcat/webapps/smarty/course/docroot/search.php?food_id=FOOD_$1 [L] RewriteRule ^/course/FOOD_([^/]*)/p([^/]*)/?$ /usr/local/tomcat/webapps/smarty/course/docroot/search.php?food_id=FOOD_$1&page=$2 [L] RewriteRule ^/course/RQ_([^/]*)/?$ /usr/local/tomcat/webapps/smarty/course/docroot/search.php?rq_id=RQ_$1 [L] RewriteRule ^/course/RQ_([^/]*)/p([^/]*)/?$ /usr/local/tomcat/webapps/smarty/course/docroot/search.php?rq_id=RQ_$1&page=$2 [L] RewriteRule ^/course/theme([^/]*)/?$ /usr/local/tomcat/webapps/smarty/course/docroot/search.php?theme=$1 [L] RewriteRule ^/course/theme([^/]*)/p([^/]*)/$ /usr/local/tomcat/webapps/smarty/course/docroot/search.php?theme=$1&page=$2 [L] RewriteRule ^/course/price([^/]*)/$ /usr/local/tomcat/webapps/smarty/course/docroot/search.php?price=$1 [L] RewriteRule ^/course/price([^/]*)/p([^/]*)/$ /usr/local/tomcat/webapps/smarty/course/docroot/search.php?price=$1&page=$2 [L] RewriteRule ^/course/person([^/]*)/?$ /usr/local/tomcat/webapps/smarty/course/docroot/search.php?person=$1 [L] RewriteRule ^/course/person([^/]*)/p([^/]*)/$ /usr/local/tomcat/webapps/smarty/course/docroot/search.php?person=$1&page=$2 [L] RewriteRule ^/course/average([^/]*)/$ /usr/local/tomcat/webapps/smarty/course/docroot/search.php?average=$1 [L] RewriteRule ^/course/average([^/]*)/p([^/]*)/$ /usr/local/tomcat/webapps/smarty/course/docroot/search.php?average=$1&page=$2 [L] RewriteRule ^/course/time/?$ /usr/local/tomcat/webapps/smarty/course/docroot/search.php?time=allday [L] RewriteRule ^/course/time/p([^/]*)/$ /usr/local/tomcat/webapps/smarty/course/docroot/search.php?time=allday&page=$1 [L] RewriteRule ^/course/time/([^/]*)/$ /usr/local/tomcat/webapps/smarty/course/docroot/search.php?time=$1 [L] RewriteRule ^/course/time/([^/]*)/p([^/]*)/$ /usr/local/tomcat/webapps/smarty/course/docroot/search.php?time=$1&page=$2 [L] RewriteRule ^/course/([^/\\.]*)/?$ /usr/local/tomcat/webapps/smarty/course/docroot/search.php?pinyin=$1 [L] RewriteRule ^/course/([^/\\.]*)/p([^/]*)/$ /usr/local/tomcat/webapps/smarty/course/docroot/search.php?pinyin=$1&page=$2 [L] #course_bj RewriteRule ^/beijing/course/?$ /usr/local/tomcat/webapps/smarty/course/docroot/index.php?area=1 [L] RewriteRule ^/beijing/course/all/?$ /usr/local/tomcat/webapps/smarty/course/docroot/search.php?area=1 [L] RewriteRule ^/beijing/course/all/p([^/]*)/?$ /usr/local/tomcat/webapps/smarty/course/docroot/search.php?area=1&page=$1 [L] RewriteRule ^/beijing/course/tag/([^/]*)/?$ /usr/local/tomcat/webapps/smarty/course/docroot/search.php?area=1&tag_id=$1 [L] RewriteRule ^/beijing/course/tag/([^/]*)/p([^/]*)/?$ /usr/local/tomcat/webapps/smarty/course/docroot/search.php?area=1&tag_id=$1&page=$2 [L] RewriteRule ^/beijing/course/AREA_([^/]*)/?$ /usr/local/tomcat/webapps/smarty/course/docroot/search.php?area=1&area_id=AREA_$1 [L] RewriteRule ^/beijing/course/AREA_([^/]*)/p([^/]*)/?$ /usr/local/tomcat/webapps/smarty/course/docroot/search.php?area=1&area_id=AREA_$1&page=$2 [L] RewriteRule ^/beijing/course/FOOD_([^/]*)/?$ /usr/local/tomcat/webapps/smarty/course/docroot/search.php?area=1&food_id=FOOD_$1 [L] RewriteRule ^/beijing/course/FOOD_([^/]*)/p([^/]*)/?$ /usr/local/tomcat/webapps/smarty/course/docroot/search.php?area=1&food_id=FOOD_$1&page=$2 [L] RewriteRule ^/beijing/course/RQ_([^/]*)/?$ /usr/local/tomcat/webapps/smarty/course/docroot/search.php?area =1&rq_id=RQ_$1 [L] RewriteRule ^/beijing/course/RQ_([^/]*)/p([^/]*)/?$ /usr/local/tomcat/webapps/smarty/course/docroot/search.php?area=1&rq_id=RQ_$1&page=$2 [L] RewriteRule ^/beijing/course/theme([^/]*)/?$ /usr/local/tomcat/webapps/smarty/course/docroot/search.php?area=1&theme=$1 [L] RewriteRule ^/beijing/course/theme([^/]*)/p([^/]*)/$ /usr/local/tomcat/webapps/smarty/course/docroot/search.php?area=1&theme=$1&page=$2 [L] RewriteRule ^/beijing/course/price([^/]*)/$ /usr/local/tomcat/webapps/smarty/course/docroot/search.php?area=1&price=$1 [L] RewriteRule ^/beijing/course/price([^/]*)/p([^/]*)/$ /usr/local/tomcat/webapps/smarty/course/docroot/search.php?area=1&price=$1&page=$2 [L] RewriteRule ^/beijing/course/person([^/]*)/?$ /usr/local/tomcat/webapps/smarty/course/docroot/search.php?area=1&person=$1 [L] RewriteRule ^/beijing/course/person([^/]*)/p([^/]*)/$ /usr/local/tomcat/webapps/smarty/course/docroot/search.php?area=1&person=$1&page=$2 [L] RewriteRule ^/beijing/course/average([^/]*)/$ /usr/local/tomcat/webapps/smarty/course/docroot/search.php?area=1&average=$1 [L] RewriteRule ^/beijing/course/average([^/]*)/p([^/]*)/$ /usr/local/tomcat/webapps/smarty/course/docroot/search.php?area=1&average=$1&page=$2 [L] RewriteRule ^/beijing/course/time/?$ /usr/local/tomcat/webapps/smarty/course/docroot/search.php?area=1&time=allday [L] RewriteRule ^/beijing/course/time/p([^/]*)/$ /usr/local/tomcat/webapps/smarty/course/docroot/search.php?area=1&time=allday&page=$1 [L] RewriteRule ^/beijing/course/time/([^/]*)/$ /usr/local/tomcat/webapps/smarty/course/docroot/search.php?area=1&time=$1 [L] RewriteRule ^/beijing/course/time/([^/]*)/p([^/]*)/$ /usr/local/tomcat/webapps/smarty/course/docroot/search.ph p?area=1&time=$1&page=$2 [L] RewriteRule ^/beijing/course/([^/\\.]*)/?$ /usr/local/tomcat/webapps/smarty/course/docroot/search.php?area=1&pinyin=$1 [L] RewriteRule ^/beijing/course/([^/\\.]*)/p([^/]*)/$ /usr/local/tomcat/webapps/smarty/course/docroot/search.php?area=1&pinyin=$1&page=$2 [L] #/campaign/wap/shop/ RewriteCond %{REQUEST_URI} ^/campaign/wap/shop/search/?$ RewriteRule ^(.*)$ /campaign/wap/shop/index.php [P,L] RewriteCond %{REQUEST_URI} ^/campaign/wap/shop/search/([^/]*)/([^/]*)/$ RewriteRule ^(.*)$ /campaign/wap/shop/index.php?%1_id=%2&%1=%2 [P,L] RewriteCond %{REQUEST_URI} ^/campaign/wap/shop/search/([^/]*)/([^/]*)/([^/]*)/([^/]*)/$ RewriteRule ^(.*)$ /campaign/wap/shop/index.php?%1=%2&%3=%4&%1_id=%2&%3_id=%4 [P,L] RewriteCond %{REQUEST_URI} ^/campaign/wap/shop/search/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/$ RewriteRule ^(.*)$ /campaign/wap/shop/index.php?%1=%2&%3=%4&%5=%6&%1_id=%2&%3_id=%4&%5_id=%6 [P,L] RewriteCond %{REQUEST_URI} ^/campaign/wap/shop/simple/?$ RewriteRule ^(.*)$ /campaign/wap/shop/simple.php [P,L] RewriteCond %{REQUEST_URI} ^/campaign/wap/shop/simple/([^/]*)/([^/]*)/$ RewriteRule ^(.*)$ /campaign/wap/shop/simple.php?%1_id=%2&%1=%2 [P,L] RewriteCond %{REQUEST_URI} ^/campaign/wap/shop/simple/([^/]*)/([^/]*)/([^/]*)/([^/]*)/$ RewriteRule ^(.*)$ /campaign/wap/shop/simple.php?%1=%2&%3=%4&%1_id=%2&%3_id=%4 [P,L] RewriteCond %{REQUEST_URI} ^/campaign/wap/shop/simple/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/$ RewriteRule ^(.*)$ /campaign/wap/shop/simple.php?%1=%2&%3=%4&%5=%6&%1_id=%2&%3_id=%4&%5_id=%6 [P,L] #event RewriteCond %{REQUEST_URI} ^/event$ RewriteRule ^(.*)$ /event/ [P,L] RewriteCond %{REQUEST_URI} ^/event/detail/([0-9]+)/?$ RewriteRule ^(.*)$ /event/detail.php?event_id=%1 [P,L] RewriteCond %{REQUEST_URI} ^/event/detail/([0-9]+)/([0-9]+)/?$ RewriteRule ^(.*)$ /event/detail.php?event_id=%1&address_id=%2 [P,L] RewriteCond %{REQUEST_URI} ^/event/leisure/([^/]+)/?$ RewriteRule ^(.*)$ /event/leisure_detail.php?category_id=%1 [P,L] RewriteCond %{REQUEST_URI} ^/event/detail/m/([^/]+)/?$ RewriteRule ^(.*)$ /event/event_mdetail.php?event_id=%1 [P,L] RewriteCond %{REQUEST_URI} ^/event/search/class/([^/]+)/?$ RewriteRule ^(.*)$ /event/search.php?class_id=%1 [P,L] RewriteCond %{REQUEST_URI} ^/event/search/class/([^/]+)/([0-9]+)/?$ RewriteRule ^(.*)$ /event/search.php?class_id=%1&page=%2 [P,L] RewriteCond %{REQUEST_URI} ^/event/search/class/([^/]+)/order/([^/]+)/?$ RewriteRule ^(.*)$ /event/search.php?class_id=%1&order=%2 [P,L] RewriteCond %{REQUEST_URI} ^/event/search/class/([^/]+)/order/([^/]+)/([0-9]+)/?$ RewriteRule ^(.*)$ /event/search.php?class_id=%1&order=%2&page=%2 [P,L] RewriteCond %{REQUEST_URI} ^/event/search/leisure/([^/]+)/day/([^/]+)/?$ RewriteRule ^(.*)$ /event/search.php?category_id=%1&day=%2 [P,L] RewriteCond %{REQUEST_URI} ^/event/search/leisure/([^/]+)/day/([^/]+)/([0-9]+)/?$ RewriteRule ^(.*)$ /event/search.php?category_id=%1&day=%2&page=%3 [P,L] RewriteCond %{REQUEST_URI} ^/event/search/day/([^/]+)/?$ RewriteRule ^(.*)$ /event/search.php?day=%1 [P,L] RewriteCond %{REQUEST_URI} ^/event/search/day/([^/]+)/category_id/([^/]+)/?$ RewriteRule ^(.*)$ /event/search.php?day=%1&category_id=%2 [P,L] RewriteCond %{REQUEST_URI} ^/event/search/tag/([^/]+)/?$ RewriteRule ^(.*)$ /event/search.php?tag_id=%1 [P,L] RewriteCond %{REQUEST_URI} ^/event/search/tag/([^/]+)/([0-9]+)/?$ RewriteRule ^(.*)$ /event/search.php?tag_id=%1&page=%2 [P,L] RewriteCond %{REQUEST_URI} ^/event/search2/([^/]*)/([^/]*)/?$ RewriteRule ^(.*)$ /event/search.php?%1=%2 [P,L] RewriteCond %{REQUEST_URI} ^/event/search2/([^/]*)/([^/]*)/([^/]*)/([^/]*)/?$ RewriteRule ^(.*)$ /event/search.php?%1=%2&%3=%4 [P,L] RewriteCond %{REQUEST_URI} ^/event/search2/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/?$ RewriteRule ^(.*)$ /event/search.php?%1=%2&%3=%4&%5=%6 [P,L] RewriteCond %{REQUEST_URI} ^/event/search2/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/?$ RewriteRule ^(.*)$ /event/search.php?%1=%2&%3=%4&%5=%6&%7=%8 [P,L] #event add by DSD xl # RewriteRule ^/event$ /event/ [L] # RewriteRule ^/event/detail/([0-9]+)/?$ /usr/local/tomcat/webapps/smarty/event/docroot/detail.php?event_id=$1 [L] # RewriteRule ^/event/detail/([0-9]+)/([0-9]+)/?$ /usr/local/tomcat/webapps/smarty/event/docroot/detail.php?event_id=$1&address_id=$2 [L] # RewriteRule ^/event/leisure/([^/]+)/?$ /usr/local/tomcat/webapps/smarty/event/docroot/leisure_detail.php?category_id=$1 [L] # RewriteRule ^/event/detail/m/([^/]+)/?$ /usr/local/tomcat/webapps/smarty/event/docroot/event_mdetail.php?event_id=$1 [L] # # RewriteRule ^/event/search/class/([^/]+)/?$ /usr/local/tomcat/webapps/smarty/event/docroot/search.php?class_id=$1 [L] # RewriteRule ^/event/search/class/([^/]+)/([0-9]+)/?$ /usr/local/tomcat/webapps/smarty/event/docroot/search.php?class_id=$1&page=$2 [L] # # RewriteRule ^/event/search/class/([^/]+)/order/([^/]+)/?$ /usr/local/tomcat/webapps/smarty/event/docroot/search.php?class_id=$1&order=$2 [L] # RewriteRule ^/event/search/class/([^/]+)/order/([^/]+)/([0-9]+)/?$ /usr/local/tomcat/webapps/smarty/event/docroot/search.php?class_id=$1&order=$2&page=$2 [L] # # RewriteRule ^/event/search/leisure/([^/]+)/day/([^/]+)/?$ /usr/local/tomcat/webapps/smarty/event/docroot/search.php?category_id=$1&day=$2 [L] # RewriteRule ^/event/search/leisure/([^/]+)/day/([^/]+)/([0-9]+)/?$ /usr/local/tomcat/webapps/smarty/event/docroot/search.php?category_id=$1&day=$2&page=$3 [L] # # RewriteRule ^/event/search/day/([^/]+)/?$ /event/search.php?day=$1 [L] # RewriteRule ^/event/search/day/([^/]+)/category_id/([^/]+)/?$ /usr/local/tomcat/webapps/smarty/event/docroot/ event/search.php?day=$1&category_id=$2 [L] # # RewriteRule ^/event/search/tag/([^/]+)/?$ /usr/local/tomcat/webapps/smarty/event/docroot/search.php?tag_id=%1 [L] # RewriteRule ^/event/search/tag/([^/]+)/([0-9]+)/?$ /usr/local/tomcat/webapps/smarty/event/docroot/search.php?tag_id=%1&page=%2 [L] # # RewriteRule ^/event/search2/([^/]*)/([^/]*)/?$ /usr/local/tomcat/webapps/smarty/event/docroot/search.php?$1=$2 [L] # RewriteRule ^/event/search2/([^/]*)/([^/]*)/([^/]*)/([^/]*)/?$ /usr/local/tomcat/webapps/smarty/event/docroot/search.php?$1=$2&$3=$4 [L] # RewriteRule ^/event/search2/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/?$ /usr/local/tomcat/webapps/smarty/event/docroot/search.php?$1=$2&$3=$4&$5=$6 [L] # RewriteRule ^/event/search2/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/?$ /usr/local/tomcat/webapps/smarty/event/docroot/search.php?$1=$2&$3=$4&$5=$6&$7=$8 [L] # RewriteRule ^/event/search2/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/?$ /usr/local/tomcat/webapps/smarty/event/docroot/search.php?$1=$2&$3=$4&$5=$6&$7=$8 [L] # RewriteRule ^/event/search2/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/?$ /usr/local/tomcat/webapps/smarty/event/docroot/search.php?$1=$2&$3=$4&$5=$6&$7=$8 [L] ## #japanese_reset start RewriteCond %{REQUEST_URI} ^/jp/sn/([^/]*)/([^/]*)(\\.htm|/?)$ RewriteRule ^(.*)$ /usr/local/tomcat/webapps/ROOT/japanese_rest/shop/docroot/sn_mapping.php?shopname=%1&keyword=%2 [L] RewriteCond %{REQUEST_URI} ^/jp/sn/([^/]*)(\\.htm|/?)$ RewriteRule ^(.*)$ /usr/local/tomcat/webapps/ROOT/japanese_rest/shop/docroot/sn_mapping.php?shopname=%1 [L] RewriteCond %{REQUEST_URI} ^/jp/sn/([^/]*)/([^/]*)/([^/]*)(\\.htm|/?)$ RewriteRule ^(.*)$ /usr/local/tomcat/webapps/ROOT/japanese_rest/shop/docroot/sn_mapping.php?shopname=%1&keyword=%2¶m=%3 [L] #end # shop add by DSD xl #index # RewriteRule ^/shop/([b-s0-9]+)(/\\.htm|/?)$ /usr/local/tomcat/webapps/smarty/shop/docroot/index.php?shopid=$1 [L] RewriteCond %{REQUEST_URI} ^/shop/([b-z0-9]+)(/\\.htm|/?)$ RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=index [L] #menu # RewriteRule ^/shop/([^/]*)/menu([1-9]?)(\\.htm|/?)$ /usr/local/tomcat/webapps/smarty/shop/docroot/menu.php?shopid=$1&tabid=$2 [L] RewriteCond %{REQUEST_URI} ^/shop/([^/]*)/menu([1-9]?)(\\.htm|/?)$ RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&tabid=%2&re_url=menu [L] #coupon # RewriteRule ^/shop/([^/]*)/map(\\.htm|/?)$ /usr/local/tomcat/webapps/smarty/shop/docroot/map.php?shopid=$1 [L] RewriteCond %{REQUEST_URI} ^/shop/([^/]*)/map(\\.htm|/?)$ RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=map [L] #coupon_new # RewriteRule ^/shop/([^/]*)/coupon(\\.htm|/?)$ /usr/local/tomcat/webapps/smarty/shop/docroot/coupon.php?shopid=$1 [L] RewriteCond %{REQUEST_URI} ^/shop/([^/]*)/coupon(\\.htm|/?)$ RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=coupon [L] # RewriteCond %{REQUEST_URI} ^/shop/([^/]*)/coupon(\\.htm|/?)$ # RewriteRule ^(.*)$ /shop/coupon.php?shopid=%1 [P,L] #reserve # RewriteRule ^/shop/([^/]*)/reserve(\\.htm|/?)$ /usr/local/tomcat/webapps/smarty/shop/docroot/reserve.php?shopid=$1 [L] RewriteCond %{REQUEST_URI} ^/shop/([^/]*)/reserve(\\.htm|/?)$ RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=reserve [L] # RewriteCond %{REQUEST_URI} ^/shop/([^/]*)/reserve/([0-9_]+)/?$ # RewriteRule ^(.*)$ /shop/reserve.php?shopid=%1&price=%2 [P,L] # RewriteRule ^/shop/([^/]*)/reserve/([0-9_]+)/?$ /usr/local/tomcat/webapps/smarty/shop/docroot/reserve.php?shopid=$1&price=$2 [L] RewriteCond %{REQUEST_URI} ^/shop/([^/]*)/reserve/([0-9_]+)/?$ RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&price=%2&re_url=reserve [L] RewriteRule ^/shop/reserve/([0-9]+)/([^/]+)/?$ /usr/local/tomcat/webapps/smarty/shop/docroot/reserve.php?reservation_id=$1&actionto=$2 [L] #waitinput # RewriteRule ^/shop/([^/]*)/invite(\\.htm|/?)$ /usr/local/tomcat/webapps/smarty/shop/docroot/waitinput.php?shopid=$1 [L] RewriteCond %{REQUEST_URI} ^/shop/([^/]*)/invite(\\.htm|/?)$ RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=invite [L] # RewriteRule ^/shop/([^/]*)/feedback(\\.htm|/?)$ /usr/local/tomcat/webapps/smarty/shop/docroot/commentinput.php?shopid=$1 [L] RewriteCond %{REQUEST_URI} ^/shop/([^/]*)/feedback(\\.htm|/?)$ RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=feedback [L] # RewriteRule ^/shop/([^/]*)/cook(\\.htm|/?)$ /usr/local/tomcat/webapps/smarty/shop/docroot/cook.php?shopid=$1 [L] RewriteCond %{REQUEST_URI} ^/shop/([^/]*)/cook(\\.htm|/?)$ RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=cook [L] # RewriteRule ^/shop/([^/]*)/event(\\.htm|/?)$ /usr/local/tomcat/webapps/smarty/shop/docroot/event.php?shopid=$1 [L] RewriteCond %{REQUEST_URI} ^/shop/([^/]*)/event(\\.htm|/?)$ RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&re_url=event [L] # RewriteRule ^/shop/([^/]*)/event/([0-9]+)(\\.htm|/?)$ /usr/local/tomcat/webapps/smarty/shop/docroot/event.php?shopid=$1&eventid=$2 [L] RewriteCond %{REQUEST_URI} ^/shop/([^/]*)/event/([0-9]+)(\\.htm|/?)$ RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/shop/docroot/sn_redirect.php?shopid=%1&eventid=%2&re_url=event [L] RewriteRule ^/prouser/(.*) /usr/local/tomcat/webapps/smarty/prouser/docroot/$1 [L] # present add by DSD xl RewriteRule ^/present(\\/|)$ /present/index.html [R=301] RewriteRule ^/present/([^\\.]+).(php|css|js|jpg|gif)(.*)$ /project/gold/$1.$2$3 [L] RewriteRule ^/present/index.html$ /project/gold/index.php [L] RewriteRule ^/present/index_([0-9]+).html$ /project/gold/index.php?offset=$1 [L] RewriteRule ^/present/award_view_([0-9]+).html$ /project/gold/award_view.php?id=$1 [L] RewriteRule ^/present/award_List.html$ /project/gold/award_List.php [L] RewriteRule ^/present/award_List_([0-9]+).html$ /project/gold/award_List.php?offset=$1 [L] RewriteRule ^/present/award_List_m([0-9]+)_y([0-9]+).html$ /project/gold/award_List.php?m=$1&y=$2 [L] RewriteRule ^/present/award_List_m([0-9]+)_y([0-9]+)_([0-9]+).html$ /project/gold/award_List.php?m=$1&y=$2&offset=$3 [L] RewriteCond %{REQUEST_URI} ^/beijing$ RewriteRule ^(.*)$ /beijing/ [R=301] RewriteCond %{QUERY_STRING} ^id=editor/index&keyword=(.*) RewriteRule ^(.*)$ /gu/editor.php?teamid-2-tagname-%1-action-article.html [R=302] RewriteCond %{REQUEST_URI} ^/secretary/mingxuan(.*)$ RewriteRule ^(.*)$ /customshop/mingxuan%1 [P,L] RewriteCond %{REQUEST_URI} ^/gu/tanshi$ RewriteRule ^(.*)$ /gu/tanshi/ [R=301] RewriteCond %{REQUEST_URI} ^/gu/tanshi/(.*)$ RewriteRule ^(.*)$ /customshop/tanshi/%1 [P,L] RewriteCond %{REQUEST_URI} ^/secretary$ RewriteRule ^(.*)$ /secretary/ [R=301] RewriteCond %{REQUEST_URI} ^/secretary/$ RewriteRule ^(.*)$ /gu/secretary.php [P,L] RewriteCond %{REQUEST_URI} ^/secretary/(.*)$ RewriteRule ^(.*)$ /gu/%1 [P,L] RewriteCond %{REQUEST_URI} ^/beijing/secretary$ RewriteRule ^(.*)$ /beijing/secretary/ [R=301] RewriteCond %{REQUEST_URI} ^/beijing/secretary/(secretary\\.php|)$ RewriteRule ^(.*)$ /gu/secretarybj.php [P,L] RewriteCond %{REQUEST_URI} ^/beijing/secretary/secretary_(article|special).php$ RewriteRule ^(.*)$ /gu/secretarybj_%1.php [P,L] RewriteCond %{REQUEST_URI} ^/beijing/opening$ RewriteRule ^(.*)$ /beijing/opening/ [R=301] RewriteCond %{REQUEST_URI} ^/beijing/opening/(|index.php)$ RewriteRule ^(.*)$ /opening/beijing.php [P,L] RewriteCond %{REQUEST_URI} ^/beijing/opening/(.*)$ RewriteRule ^(.*)$ /opening/%1 [P,L] RewriteCond %{REQUEST_URI} ^/InitMemAdd.do$ RewriteRule ^(.*)$ /register/reg.php [R=301] RewriteCond %{REQUEST_URI} ^/campaign/howtouse$ RewriteRule ^(.*)$ /campaign/howtouse/ [R=301] RewriteCond %{REQUEST_URI} ^/campaign/howtouse/(.*)$ RewriteRule ^(.*)$ /project/howtouse/%1 [P,L] RewriteCond %{REQUEST_URI} ^/ranking$ RewriteRule ^(.*)$ /ranking/ [R=301] RewriteCond %{REQUEST_URI} ^/ranking/(.*)$ RewriteRule ^(.*)$ /project/webstat/%1 [P,L] RewriteCond %{REQUEST_URI} ^/coupon/help$ RewriteRule ^(.*)$ /coupon/help/ [R=301] RewriteCond %{REQUEST_URI} ^/coupon/help/(.*)$ RewriteRule ^(.*)$ /campaign/howtouse/%1 [P,L] RewriteCond %{REQUEST_URI} ^/InitTop2.do$ RewriteRule ^(.*)$ /gu/user_index.php [R=301] RewriteCond %{REQUEST_URI} ^/wpgp2007(\\/|)$ RewriteRule ^(.*)$ /wpgp2007/jieguo.htm [R=301] RewriteRule ^/hktrip/([0-9]+)$ /hktrip/index.php?tid=$1 [L] Alias /teji \"/usr/local/tomcat/webapps/theme/\" RewriteCond %{REQUEST_URI} ^/teji/beijing$ RewriteRule ^(.*) /teji/bj.php [P,L] RewriteCond %{REQUEST_URI} ^/teji/beijing([a-zA-Z0-9_-]+)/?$ RewriteRule ^(.*)$ /teji/bj.php?html_url=%1 [P,L] RewriteCond %{REQUEST_URI} ^/teji/([a-zA-Z0-9_-]+)/?$ RewriteRule ^(.*)$ /teji/index.php?html_url=%1 [P,L] RewriteCond %{REQUEST_URI} ^/teji/beijing([a-zA-Z0-9_-]+)/index.htm$ RewriteRule ^(.*)$ /teji/bj.php?html_url=%1 [P,L] RewriteCond %{REQUEST_URI} ^/teji/([a-zA-Z0-9_-]+)/index.htm$ RewriteRule ^(.*)$ /teji/index.php?html_url=%1 [P,L] RewriteCond %{REQUEST_URI} ^/teji/beijing([a-zA-Z0-9_-]+)/([0-9]+)/?$ RewriteRule ^(.*) /teji/bj.php?html_url=%1&page=%2 [P,L] RewriteCond %{REQUEST_URI} ^/teji/([a-zA-Z0-9_-]+)/([0-9]+)/?$ RewriteRule ^(.*)$ /teji/index.php?html_url=%1&page=%2 [P,L] RewriteCond %{REQUEST_URI} ^/wap/xintiandi/?$ RewriteRule ^(.*)$ /wap/doSearch.jsp?city=shanghai&cat=RQ_1_4&parent=RQ_1 [R=301] RewriteCond %{REQUEST_URI} ^/wap/tianzifang/?$ RewriteRule ^(.*)$ /wap/doSearch.jsp?city=shanghai&cat=RQ_3_10&parent=RQ_3 [R=301] # php_flag engine off php_admin_flag safe_mode off # php_value auto_append_file /usr/local/tomcat/webapps/ROOT/ip.php #CustomLog /var/log/httpd/access_log combined env=!dontlog Alias /course \"/usr/local/tomcat/webapps/smarty/course/docroot/\" Alias /xindengchang \"/usr/local/tomcat/webapps/smarty/xindengchang/docroot/\" # Alias /hot_area \"/usr/local/tomcat/webapps/smarty/hotarea/docroot/\" Alias /beijing/xindengchang \"/usr/local/tomcat/webapps/smarty/xindengchang_bj/docroot/\" Alias /campaign/recommend \"/usr/local/tomcat/webapps/smarty/recommend/docroot/\" Alias /campaign/wap/shop \"/usr/local/tomcat/webapps/smarty/wap/docroot/\" Alias /admin \"/usr/local/tomcat/webapps/admin/\" Alias /pro \"/usr/local/tomcat/webapps/pro/\" #Alias /bbs \"/usr/local/tomcat/webapps/bbs/\" #Alias /gu \"/usr/local/tomcat/webapps/gu/\" Alias /bossblog \"/usr/local/tomcat/webapps/bossblog/\" Alias /srajcc \"/usr/local/tomcat/webapps/srajcc/\" Alias /beijing/ \"/usr/local/tomcat/webapps/beijing/\" Alias /beijing2/ \"/usr/local/tomcat/webapps/beijing2/\" Alias /shanghai \"/usr/local/tomcat/webapps/shanghai/\" Alias /guangzhou \"/usr/local/tomcat/webapps/guangzhou/\" Alias /tianjin \"/usr/local/tomcat/webapps/tianjin/\" Alias /china \"/usr/local/tomcat/webapps/china/\" # Alias /tianjin/ \"/usr/local/tomcat/webapps/home/www/tianjin/docroot/\" # Alias /guangzhou/ \"/usr/local/tomcat/webapps/home/www/guangzhou/docroot/\" Alias /dalian \"/usr/local/tomcat/webapps/dalian/\" Alias /qingdao \"/usr/local/tomcat/webapps/qingdao/\" Alias /hangzhou \"/usr/local/tomcat/webapps/hangzhou/\" Alias /suzhou \"/usr/local/tomcat/webapps/suzhou/\" Alias /chongqing \"/usr/local/tomcat/webapps/chongqing/\" Alias /chengdu \"/usr/local/tomcat/webapps/chengdu/\" Alias /wuhan \"/usr/local/tomcat/webapps/wuhan/\" Alias /shenzhen \"/usr/local/tomcat/webapps/shenzhen/\" Alias /nanjing \"/usr/local/tomcat/webapps/nanjing/\" Alias /jp \"/usr/local/tomcat/webapps/shanghai/jp/\" # Alias /jp \"/usr/local/tomcat/webapps/jp/\" # Alias /en \"/usr/local/tomcat/webapps/en/\" Alias /en \"/usr/local/tomcat/webapps/home/www/enshanghai/docroot/en\" # Alias /img_u \"/mnt/smb/store/img_u/\" Alias /phpmyadmin/ \"/usr/local/tomcat/webapps/phpmyadmin/\" #Alias /adminpic/ \"/mnt/smb/store/adminpic/\" Alias /track \"/usr/local/tomcat/webapps/track/\" Alias /phpadmin/ \"/usr/local/tomcat/webapps/phpadmin/\" Alias /brandpro \"/usr/local/tomcat/webapps/phppro/\" Alias /archives/ \"/usr/local/tomcat/webapps/archives/\" Alias /iptv/ \"/usr/local/tomcat/webapps/iptv/\" Alias /statisticalreport \"/usr/local/tomcat/webapps/smarty/prostat/docroot/\" Alias /mobilereport \"/usr/local/tomcat/webapps/smarty/mobilereport/docroot/\" Alias /event/ \"/usr/local/tomcat/webapps/smarty/event/docroot/\" Alias /theme \"/usr/local/tomcat/webapps/theme/\" Alias /yufeng/ \"/usr/local/tomcat/webapps/yufeng/\" Alias /brand/ \"/usr/local/tomcat/webapps/smarty/brand/docroot/\" Alias /brand_pro/ \"/usr/local/tomcat/webapps/smarty/pro/docroot/\" # # # # Alias /shop/ \"/usr/local/tomcat/webapps/smarty/shop/docroot/\" Alias /guangzhou \"/usr/local/tomcat/webapps/guangzhou/\" Alias /tianjin \"/usr/local/tomcat/webapps/tianjin/\" Alias /dalian \"/usr/local/tomcat/webapps/dalian/\" Alias /qingdao \"/usr/local/tomcat/webapps/qingdao/\" Alias /hangzhou \"/usr/local/tomcat/webapps/hangzhou/\" Alias /suzhou \"/usr/local/tomcat/webapps/suzhou/\" Alias /chongqing \"/usr/local/tomcat/webapps/chongqing/\" Alias /chengdu \"/usr/local/tomcat/webapps/chengdu/\" Alias /wuhan \"/usr/local/tomcat/webapps/wuhan/\" Alias /nanjing \"/usr/local/tomcat/webapps/nanjing/\" Alias /shenzhen \"/usr/local/tomcat/webapps/shenzhen/\" Alias /china \"/usr/local/tomcat/webapps/china/\" Alias /img_u \"/mnt/smb/store/img_u/\" RewriteCond %{REQUEST_URI} ^/shop/([c-s0-9]+)/?$ RewriteRule ^(.*)$ /present [L] JkWorkersFile \"/etc/httpd/conf/worker.properties\" #JkMount /* ajp13 JkMount /*.do ajp13 JkMount /*.jsp ajp13 JkMount /servlet/* ajp13 JkMount /shop* ajp13 JkMount /search* ajp13 JkMount /beijing/search* ajp13 JkMount /guangzhou/search* ajp13 JkMount /tianjin/search* ajp13 JkMount /dalian/search* ajp13 JkMount /qingdao/search* ajp13 JkMount /hangzhou/search* ajp13 JkMount /suzhou/search* ajp13 JkMount /chongqing/search* ajp13 JkMount /chengdu/search* ajp13 JkMount /wuhan/search* ajp13 JkMount /nanjing/search* ajp13 JkMount /shenzhen/search* ajp13 JkMount /japan/search* ajp13 JkMount /admin/* ajp13 JkMount /pro/* ajp13 # JkMount /wap/* ajp13 ####################### add for laomatou site begin ################################# #add the last slash # RewriteCond %{REQUEST_URI} ^/hotarea/(laomatou)(/(index|list1|map|album|coupon|about|sendMail|mapprint))?(/)?$ # RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/hotarea_new/%1/%3.php # RewriteRule ^(.*)/\\.php$ $1/index.php [L] #shop list # RewriteCond %{REQUEST_URI} ^/hotarea/(laomatou)/list1/([0-9]?)(/([0-9]+))?/?$ # RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/hotarea_new/%1/list1.php?sortType=%2&pageNo=%4 [L] #map # RewriteCond %{REQUEST_URI} ^/hotarea/(laomatou)/map/([0-9]*)/([0-9]*)/([0-9]*)/([0-9]*)/(cs[0-9]{5})*/?(#laomatou_jiaotong_zhinan)?$ # RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/hotarea_new/%1/map.php?lat=%2&lon=%3&map_lat=%4&map_lon=%5&shopid=%6%7 [L] #images, js, css # RewriteCond %{REQUEST_URI} ^/hotarea/(laomatou)/(images|css|js|swf)(/.*)$ # RewriteRule ^(.*)$ /usr/local/tomcat/webapps/smarty/hotarea_new/%1/%2%3 [L] #Alias /hotarea/laomatou \"/usr/local/tomcat/webapps/smarty/hotarea_new/laomatou\" ####################### add for laomatou site end ################################# ####################### add for hotarea homepage start ################################# RewriteCond %{REQUEST_URI} ^/hotarea/(index|index/|index/index.php)$ RewriteRule ^(.*)$ \"/usr/local/tomcat/webapps/smarty/hotarea/homepage/index.php\" [L] RewriteCond %{REQUEST_URI} ^/hotarea/homepage/(images|css|js|swf|style)(/.*)$ RewriteRule ^(.*)$ \"/usr/local/tomcat/webapps/smarty/hotarea/%1/%2\" [L] ####################### add for hotarea homepage end ################################# ####################### add for hotarea site jianyi start ################################# RewriteCond %{REQUEST_URI} ^/hotarea/([\\w\\-]+)/(jy)?/?$ RewriteRule ^(.*)$ \"/usr/local/tomcat/webapps/smarty/hotarea/jianyi/list.php?area=%1&type=%2\" [L] RewriteCond %{REQUEST_URI} ^/hotarea/([\\w\\-]+)/jy/sendMail/?$ RewriteRule ^(.*)$ \"/usr/local/tomcat/webapps/smarty/hotarea/jianyi/sendMail.php\" [L] RewriteCond %{REQUEST_URI} ^/hotarea/([\\w\\-]+)/jy/fav/?$ RewriteRule ^(.*)$ \"/usr/local/tomcat/webapps/smarty/hotarea/jianyi/fav.php\" [L] RewriteCond %{REQUEST_URI} ^/hotarea/([\\w\\-]+)/(jy)/list/([0-9]?)(/([0-9]+))?/?$ RewriteRule ^(.*)$ \"/usr/local/tomcat/webapps/smarty/hotarea/jianyi/list.php?area=%1&type=%2&sortType=%3&pageNo=%5\" [L] RewriteCond %{REQUEST_URI} ^/hotarea/jy/style(/.*)(/.*)$ RewriteRule ^(.*)$ \"/usr/local/tomcat/webapps/smarty/hotarea/style/%1/%2\" [L] RewriteCond %{REQUEST_URI} ^/hotarea/jy/js(/.*)$ RewriteRule ^(.*)$ \"/usr/local/tomcat/webapps/smarty/hotarea/js/%1\" [L] RewriteCond %{REQUEST_URI} ^/hotarea/jy/(images|swf)/([\\w\\-]+)(/.*)$ RewriteRule ^(.*)$ \"/usr/local/tomcat/webapps/smarty/hotarea/%1/%2/%3\" [L] RewriteCond %{REQUEST_URI} ^/hotarea/([\\w\\-]+)/(jy)/map/([\\w\\-]+)?/?$ RewriteRule ^(.*)$ \"/usr/local/tomcat/webapps/smarty/hotarea/jianyi/map.php?area=%1&type=%2&biztypename=%3\" [L] ####################### add for hotarea site jianyi end ################################# ErrorLog /var/log/httpd/error_www_gudumamui_com.log CustomLog /var/log/httpd/access_www_gudumami_com.log combined
因篇幅问题不能全部显示,请点此查看更多更全内容
Copyright © 2019- huatuo0.cn 版权所有 湘ICP备2023017654号-2
违法及侵权请联系:TEL:199 18 7713 E-MAIL:2724546146@qq.com
本站由北京市万商天勤律师事务所王兴未律师提供法律服务