- 更改固定连接后,网页打开显示404
步骤:
1) 进入wordpress 后台,更改固定链接为 /%postname%.html
2) AllowOverride ALL
现在apache2不依靠httpd.conf来配置。 Ubuntu下默认的配置文件是/etc/apache2/sites-available/default可以修改上面文件来修改apache2配置,
<VirtualHost _default_:443>
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order allow,deny
allow from all
</Directory>
</VirtualHost>
3) 开启module: rewrite
使用指令:a2enmod rewrite
4) 修改.htaccess为:
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
5) 重启 apache2
使用指令:sudo /etc/init.d/apache2 restart
或:sudo service apache2 restart
6) 查看页面即可
————————————————
版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
原文链接:https://blog.csdn.net/handsomerocco/article/details/8511330