0

我在本地主机上使用.htaccess文件并编写以下代码:

RewriteEngine On    # Turn on the rewriting engine

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

我检查了http.doc文件一切都很好。但它不能正常工作。

谢谢。

4

1 回答 1

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]
于 2013-09-03T09:19:21.923 回答