APACHE VHOST配置

来源:互联网 发布:飞机多学科优化 编辑:程序博客网 时间:2024/04/29 10:21
NameVirtualHost *:80
<VirtualHost *:80>
    ServerName myservername
    DocumentRoot "myapppath"
    <Directory "myapppath">
   Options Indexes FollowSymLinks MultiViews
   AllowOverride all
Order Deny,Allow
Allow from all
    </Directory>
    <IfModule rewrite_module>
RewriteEngine on
RewriteLog "mylogpath"
RewriteLogLevel9

RewriteRule ^/ajax/products/(.*)/(.*)$ /ajax/products/$1.php?product_id=$2 [L,PT,NC]
RewriteRule ^/ajax/lookups/(.*)$ /ajax/lookups/$1.php [L,PT,NC,QSA]
RewriteRule ^/ajax/interests/(.*)$ /ajax/interests/$1.php [L,PT,NC]
RewriteRule ^/campaigns/(.*)/(.*)$ /campaigns/$1/$2.php [L,PT,NC,QSA]
RewriteRule ^/image/view/(.*)$ /image/view.php?image_id=$1 [L,PT,NC]
RewriteRule ^/image/upload$ /image/upload.php [L,PT,NC]
RewriteRule ^/ajax/keywords/(.*)$ /ajax/keywords/$1.php [L,PT,NC,QSA]
    </IfModule>
</VirtualHost>
原创粉丝点击