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
我怎样才能做到这一点?
答案 0 :(得分:0)
把它放在你的nginx配置中,nginx服务器不读取.htaccess文件
location / { rewrite ^/?([-A-Za-z0-9/]+)/?$ /index.php?q=$1 break; }