标签:style blog color io os ar strong sp div
/program/www/.htaccess
RewriteEngine On
RewriteBase /
RewriteCond $1 !^(optimizer\.php)
RewriteRule ^(.*)$ index.php?controller=$1&%{QUERY_STRING} [L]
???? ??? ??? ??? ??? ??????? htaccess ????? ??? ????? ???.
AccessFileName .htaccess <Directory "/path/to/~"> Options +FollowSymLinks AllowOverride All Order allow,deny Allow from all </Directory>
??? ???? ??
RewriteEngine On
RewriteBase /
RewriteCond $1 !^(optimizer\.php|img)
RewriteRule ^(.*)$ index.php?controller=$1&%{QUERY_STRING} [L]
conf/rewrite.conf
RewriteEngine On
RewriteRule ^/img($|/.*) /home/resource/img/$1 [PT]
RewriteRule ^/optimizer\.php /home/12r/framework/direct/optimizer.php?%{QUERY_STRING} [L]
RewriteRule ^(.*)$ /home/12r/framework/index.php?controller=$1&%{QUERY_STRING} [L]
conf/alias.conf
Alias /img "/home/resource/img" <Directory "/home/resource/img"> Options MultiViews AllowOverride None Order allow,deny Allow from all </Directory>
Virtual Host ??
<VirtualHost *:80> DocumentRoot "/home/user1/www" ServerName foobar.cafe24test.com ServerAlias foobar.cafe24test.com Include conf/alias.conf Include conf/rewrite.conf </VirtualHost>
标签:style blog color io os ar strong sp div
原文地址:http://www.cnblogs.com/appsolution/p/4002268.html