在ubuntu ngnix服务器中为php启用.htaccess

时间:2016-10-04 05:12:19

标签: php apache .htaccess mod-rewrite ubuntu-14.04

My Current .htaccess文件赞:

RewriteEngine on  
#RewriteBase /
RewriteRule ^/?([-A-Za-z0-9/]+)/?$ index.php?q=$1 [QSA,L]

现在它不支持Ubuntu 14.04 ngnix服务器。我想要一个URL模式,如:

  

abc.com/user/1

我怎样才能做到这一点?

1 个答案:

答案 0 :(得分:0)

把它放在你的nginx配置中,nginx服务器不读取.htaccess文件

location / { rewrite ^/?([-A-Za-z0-9/]+)/?$ /index.php?q=$1 break; }