admin管理员组文章数量:1123502
I try to identify the reason why when visiting any page I get the message
Nothing Found
Ready to publish your first post? <a href="/wp-admin/post-new.php">Get started here</a>.
For this instance of wordpress I configured and enabled the following virtual host
/etc/apache2/sites-available/site.local.conf
<VirtualHost *:80>
ServerName site.local
ServerAlias www.site.local
ServerAdmin [email protected]
DocumentRoot /var/www/html/wordpress-workspace/site
<Directory /var/www/html/wordpress-workspace/site>
AllowOverride All
Order Allow,Deny
Allow from All
</Directory>
ErrorLog ${APACHE_LOG_DIR}/site.local.error.log
CustomLog ${APACHE_LOG_DIR}/site.local.access.log combined
</VirtualHost>
The content of the .htaccess
file is as follows
#BEGIN WordPress
# The directives (lines) between "BEGIN WordPress" and "END WordPress" are
# dynamically generated, and should only be modified via WordPress filters.
# Any changes to the directives between these markers will be overwritten.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
#END WordPress
Links are items created in the menu settings
Could you give me a hint on how to solve this behavior?
If you need other information please let me know.
Greetings and thanks in advance
Update
I include view with current permalink configuration
本文标签: permalinksWhen accessing all pages except the homepage I get Nothing Found
版权声明:本文标题:permalinks - When accessing all pages except the homepage I get Nothing Found 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1736573362a1944801.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论