由于.htaccess文件无法设置网站

时间:2015-05-22 03:51:24

标签: apache .htaccess

嘿伙计们,我正面临这个糟糕而又令人困惑的500错误。 我在网上搜索了它,并且知道它是.htaccess的原因。

互联网以及我自己都知道Rewrite有一些东西,但我无法弄清楚这个简单的错误。

请帮助。

这是.htaccess详情

RewriteEngine on

RewriteBase /

# Prevent CI index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php/$0 [PT,L] 

# Prevent user access to the CI system folder.
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php?/$1 [L] 

# Prevent user access to the CI application folder
RewriteCond %{REQUEST_URI} ^application.*
RewriteRule ^(.*)$ /index.php?/$1 [L]

请使用" www.website.com"以简单的方式解释。

提前致谢!

0 个答案:

没有答案