14 lines
470 B
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>
|
|
|