我的网站被黑了,我误认为我从htaccess文件中删除了一行编码。
我的索引和.php包含将不再加载。
我的网站是:romanlife-romeitaly.com
这是我留下的代码:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ /index.php [L]
RewriteRule ^index\.htm$ /index.php [L]
RewriteRule ^index\.shtml$ /index.php [L]
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
谢谢!
萨拉