我有一个运行的mod-wsgi脚本,它是别名/test
。
我想将URL /prod
别名为/test
。 所以基本上, /test
加载,但URL说/prod
。 这是一个单页面的应用程序。
有什么办法可以做到这一点?
阅读http://httpd.apache.org/docs/2.0/misc/rewriteguide.html ,然后在你的VirtualHost设置或者你的.htaccess
如下内容:
RewriteEngine On RewriteRule ^/prod(/?.*)$ /test/$1 [R,L]