sky 发表于 2019-4-23 10:44:55

.htaccess 放网站根目录无效,请教下军哥怎么解决

我弄了个.htaccess 放网站根目录下,可是不起作用,请问怎么解决呢?谢谢

sky 发表于 2019-4-23 11:38:13

RewriteEngine On

# If requested resource exists as a file or directory, skip next two rules
RewriteCond %{DOCUMENT_ROOT}/$1 -f
RewriteCond %{DOCUMENT_ROOT}/$1 -d
RewriteRule (.*) -
#
# Else rewrite requests for non-existent resources to /index.php
RewriteRule (.*) /index.php?q=$1

上面是我的htaccess 规则
显示错误
unknown directive "RewriteEngine On" in /home/wwwroot/www.mysite.COM/.htaccess:4
unknown directive "RewriteCond" in /home/wwwroot/www.mysite.COM/.htaccess:4

请教下,谢谢了

licess 发表于 2019-4-23 13:01:09

apache是apache的,nginx是nginx 两者伪静态是完全不一样不通用
官网 https://lnmp.org 常见问题有说明

sky 发表于 2019-4-23 21:11:01

licess 发表于 2019-4-23 13:01
apache是apache的,nginx是nginx 两者伪静态是完全不一样不通用
官网 https://lnmp.org 常见问题有说明 ...

谢谢,已解决
页: [1]
查看完整版本: .htaccess 放网站根目录无效,请教下军哥怎么解决