我目前正在将我的网站从 Apache 迁移到 nginx,但我的 .htaccess 文件不起作用。我的网站位于 /usr/share/nginx/html/mywebsite 文件夹中。如何在我的 nginx 中使用 .htaccess...
我目前正在将我的网站从 Apache 迁移到 nginx
,但我的 .htaccess
文件无法正常工作。我的网站位于 /usr/share/nginx/html/mywebsite
文件夹中。我如何 .htaccess
在我的 nginx
服务器中使用?
这是我的 .htaccess
文件:
RewriteEngine on
RewriteRule video/watch/([a-zA-Z0-9_@$*-]+)/?$ "videos-single.php?id=$1" [NC]
Nginx 不支持 .htaccess
(参见 此处 : \'你不能这样做。你不应该。如果你需要 .htaccess,你可能做错了。\' )。
你有两个选择(据我所知):
.htaccess
( nginx.conf
也许 htaccess 到 nginx 转换器 可以帮助你)