Localhost htaccess无法正常工作

时间:2013-09-03 08:48:41

标签: .htaccess localhost

我在localhost上使用 .htaccess 文件并编写此代码:

RewriteEngine On    # Turn on the rewriting engine

RewriteRule    ^about/?$    about.php    [NC,L]

我已检查过 http.doc 文件。但它不能正常工作。

感谢。

1 个答案:

答案 0 :(得分:1)

您可以将.htaccess放在www文件夹中并将内容放在其上:

Options +FollowSymLinks -MultiViews

RewriteEngine On

RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s/+(.*)\.php [NC]
RewriteRule ^ /%1.html? [R=302,L]

RewriteRule ^abc/about\.html/?$ /abc/about.php [NC,L]