我想我已经搞砸了我的.htaccess
我正在玩我的永久链接,现在当我想将它重置回正常的localhost时。它不像往常一样工作。我不得不写“localhost / index.php”或“127.0.0.1”来打开通常的“localhost”。我该如何解决这个问题?
我正在使用它然后它开始出错了,即使我在“RewriteEngine On”之后输入任何乱码。键入“localhost”不会导致页面错误,除非它键入“localhost / index.php”或“127.0.0.1”:
Options -Multiviews
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} !^\.
RewriteRule ^(.*) /$1 [R=301,L]
如果我想将它全部恢复正常(只需键入localhost,它将自动调出我的localhost index.php)。我是否必须将httpd.conf文件设置为默认值?如果是这样,我在哪里可以获得apache 2.4.2的默认httpd.conf文件?