订单处理
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

14 lines
470 B

<VirtualHost *:80>
ServerName tid.checkcopy.com
# ServerAlias xxx
DocumentRoot /data1/www/order_processing
ErrorLog /var/log/httpd/order_processing-error_log
CustomLog /var/log/httpd/order_processing-access_log combined
RewriteEngine on
RewriteRule ^/images/(.*)$ /view/images/$1 [L]
RewriteRule ^/css/(.*)$ /view/css/$1 [L]
RewriteRule ^/js/(.*)$ /view/js/$1 [L]
RewriteRule ^(.*)$ /index.php?argv=$1 [L]
</VirtualHost>