我刚刚将我的电子商务网站(www.getfitkart.com)从共享托管迁移到Linode。现在只有主页在工作,但其他页面没有得到服务。我在所有其他页面上都出现以下错误,比如说,http://www.getfitkart.com/privacy-policy/
找不到此服务器上未找到请求的URL/隐私策略。
我的htaccess文件:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
任何帮助都将不胜感激。