2014-11-02 64 views
0

我想了解其他人寫的.htaccess文件的內容。 RewriteRule ^index\.php$ - [L]下面完成了什麼?RewriteRule似乎沒有替換

RewriteCond %{QUERY_STRING} ^(.*)?$ 
RewriteRule ^admin/(.*)$      index.php?type=admin&action=view&page=$1 [L] 

RewriteCond %{QUERY_STRING} ^(.*)?$ 
RewriteRule ^login$        index.php?action=view&type=login&%1 [L] 

RewriteCond %{QUERY_STRING} ^(.*)?$ 
RewriteRule ^forgot-password$     index.php?action=view&type=forgot-password&%1 [L] 

RewriteCond %{QUERY_STRING} ^(.*)?$ 
RewriteRule ^edit/user(/)?$      index.php?action=edit&type=user&%1 [L] 

RewriteCond %{QUERY_STRING} ^(.*)?$ 
RewriteRule ^signup(/)?$      index.php?action=edit&type=user&id=0&%1 [L] 

RewriteCond %{QUERY_STRING} ^(.*)?$ 
RewriteRule ^user/([0-9]+)(/)?     index.php?action=view&type=note&user=$1&%1 [L] 

RewriteCond %{QUERY_STRING} ^(.*)?$ 
RewriteRule ^(suggestion|comment)/([0-9]+)(/)? index.php?action=view&type=note&page=open&note_type=$1&note=$2&%1 [L] 

RewriteCond %{QUERY_STRING} ^(.*)?$ 
RewriteRule ^([0-9A-Za-z\-_]+)/(suggestion|comment)/([0-9]+)(/)? index.php?action=view&type=note&page=$1&note_type=$2&note=$3&%1 [L] 

#Catch All Pages 
RewriteRule ^index\.php$ - [L] 

RewriteCond %{QUERY_STRING} ^(.*)?$ 
RewriteRule ^([0-9A-Za-z\-_]+)(/)?   index.php?action=view&type=page&page=$1&%1 [L] 

回答