2012-10-29 77 views

回答

1

做一个.htaccess文件中第一个域的根,这个规则:

RewriteEngine On 
RewriteRule download/(.+) https://dl.dropbox.com/u/0000/$1 [L,R=301] 
0
# Check to see if mod_rewrite is installed/avaliable 
<IfModule mod_rewrite.c> 
RewriteEngine on 

# Check to see if file or directory exists 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 

# Rewrite to Dropbox URL. Make sure you change the data after "/u/" (9502594) to your own user ID 
RewriteRule ^e/(.*)$ http://dl.dropbox.com/u/9502594/$1 [L,QSA] # Embedded File 
RewriteRule ^(.*)$ http://dl.dropbox.com/u/9502594/$1?dl=1 [L,QSA] # Force Download (Default) 
</IfModule>