Skip to content

Instantly share code, notes, and snippets.

@tiancheng91
Created June 13, 2018 01:07
Show Gist options
  • Save tiancheng91/d423bee22869889327c39f0a3375f724 to your computer and use it in GitHub Desktop.
Save tiancheng91/d423bee22869889327c39f0a3375f724 to your computer and use it in GitHub Desktop.
apache 转发
RewriteEngine On
RewriteRule ^$ http://127.0.0.1:XXXXX/ [P,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ http://127.0.0.1:XXXXX/$1 [P,L]
- P: 代理
- L: 匹配到结束
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment