由于htaccess文件,wordpress安装无法正常工作

时间:2012-05-13 20:03:05

标签: wordpress .htaccess

我的服务器上运行了一个站点,这里是.htaccees文件的内容

RewriteEngine on
RewriteCond $1 !^(index\.php|img|public|robots\.txt) [NC]
RewriteRule ^(.*)$ /index.php?/$1 [L]
几天前我将Wordpress安装在一个文件夹中:example.com/my-blog/作为一个独立的应用程序 但我无法访问它。如果我删除.htaccess文件它确实工作正常,但这使得网站无论如何我无法承受。请帮忙。

请帮助,我是新手。

1 个答案:

答案 0 :(得分:0)

您可以在重写之前将这两行添加到htacces文件中,从而排除子文件夹的重写:

RewriteCond %{REQUEST_URI} !^/my-blog/ [NC]
RewriteCond %{REQUEST_URI}!=/my-blog [NC]

Ansari对于大约1美元没有被设置是正确的,因此,从不重写任何东西。