Hi @navthemes
Do You have htaccess in root of your site? Did You enable permalinks?
Thanks for reply @valexar
Yes. We enabled Permalink already, and still 404 error.
https://screencast.com/t/zcWoFVmN
Still same
https://screencast.com/t/yoIOBV5H7pPV
I had the same problem. I resolved it by removing htaccess from root and then refreshing the permalinks.
okay, so i removed .htaccess and set permalink again. and now i see this
https://screencast.com/t/T8MwTQbKvg3
its still 404 but in German.
Try changing your default language.
You could also clear your cookies and cache. That may also help π
Its just me who facing this? because nothing really helping. i will try with fresh installation again.
How You installed WordPress? As subdomain or in subfolder?
Okay.
So i have installed it again fresh. Trying with Twenty sixteen (most updated version). I do have this plugin’s latest version. I have set permalink. I have second lang in plugin which is german to check.
This is My Setup Plugin General Page https://screencast.com/t/EwNZZKSGqt
This is my German Lang Setup – https://screencast.com/t/x8VdA3KHb7
This is my language page – https://screencast.com/t/b3MQ68Hcxpj
This is My Additional Page – https://screencast.com/t/3pLLf6S3Sf3T
This is My permalink page – https://screencast.com/t/DJm0cdmO
is there anything where i am making mistake ?
Do You have the WP htaccess file in root of your site? https://codex.ww.wp.xz.cn/htaccess
Yes i do have.
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /light-north/
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /light-north/index.php [L]
</IfModule>
# END WordPress
I am running site on localhost -> http://jiteshs-macbook-air.local/light-north/
Use default htaccess
# 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
Put it in root of wp folder
I don’t find any difference, except in mine base is
RewriteBase /light-north/
which logical and RewriteRule . /light-north/index.php [L].
and since i do have my wordpress in light-north folder.
Any suggestions ?