不知道怎么把apache rewrite 规则转换成nginx rewrite配置的童鞋有喜啦。
一个自动化的linux命令行工具apache2nginx
能将apache的配置文件转换成相应的nginx的配置文件。 源代码在github上,文档,二进制文件也可以从github上获得。
使用方法:apache2nginx -f /etc/httpd/conf/httpd.conf 将生成 nginx.conf
https://github.com/nhnc-nginx/apache2nginx
另外一个选择是在线直接生产。
也可以使用在线转换工具把配置文件httpd.conf自动转换成nginx配置文件nginx.conf,规则转换网址
http://www.anilcetin.com/convert-apache-htacces...
wget http://webpy.org/static/web.py-0.36.tar.gz
tar -zxvf web.py-0.36.tar.gz
cd web.py-0.36
python setup.py install
apt-get install libapache2-mod-wsgi
service apache2 restart
vi apache2.conf
添加
WSGIScriptAlias /12306 "/srv/www/quancha.cn/public_html/12306/code.py/"
Alias /12306/static "/srv/www/quancha.cn/public_html/12306/static/"
AddType text/html .py
<Directory "/srv/www/quancha.cn/public_html/12306">
Order allow,deny
Allow from all
</Directory>
service apache2 resta...