Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在本地主机上使用.htaccess文件并编写以下代码:
RewriteEngine On # Turn on the rewriting engine RewriteRule ^about/?$ about.php [NC,L]
我检查了http.doc文件一切都很好。但它不能正常工作。
谢谢。
您可以将 .htaccess 放在www文件夹上并将内容放在上面:
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]