admin管理员组文章数量:1415111
I deployed My Wordpress Blog in one of my subdomains in Digital Ocean. I am running apache2 as my webserver.
.htaccess file related to my WordPress installation:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Virtual host file related to Wordpress Site:
<VirtualHost *:80>
ServerName blog.gopibabu.live
ServerAlias www.blog.gopibabu.live
DocumentRoot /var/www/MyBlog
<Directory /var/www/MyBlog>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
RewriteEngine on
RewriteCond %{SERVER_NAME} =blog.gopibabu.live [OR]
RewriteCond %{SERVER_NAME} =www.blog.gopibabu.live
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
</VirtualHost>
When I am trying to change my permalink settings to settings other than plain(Only plain setting is working), I am getting 404 Page
404 page
Can any one help to fix this problem?
本文标签: Permalinks are not working in Wordpress
版权声明:本文标题:Permalinks are not working in Wordpress 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745216397a2648191.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论