首页 > 编程技术 > Python > ubuntu apache2 下为wordpress设置伪静态URL
2020
08-11

ubuntu apache2 下为wordpress设置伪静态URL

1.先执行加载rewrite模块

sudo a2enmod rewrite

2.打开apache2.conf

sudo vi /etc/apache2/apache2.conf

<Directory /var/www/>  
        Options Indexes FollowSymLinks  
        AllowOverride None  
        Require all granted  
</Directory> 

改成

<Directory /var/www/>  
        Options Indexes FollowSymLinks  
        AllowOverride All  
        Require all granted  
</Directory>  

3. 确保wordpress工程目录下有.htaccess文件,并且内容如下

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

4、重启apache2

sudo service apache2 restart

最后编辑:
作者:freeman
这个作者貌似有点懒,什么都没有留下。

留下一个回复

你的email不会被公开。

此站点使用Akismet来减少垃圾评论。了解我们如何处理您的评论数据