Page not found in wordpress

i have installed the wordpress inside the domain with in a folder name, questions, landing page is working fine, no other links working, its say page not found. what to do ??

Using .htaccess like

Read More
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . questions/ [L]

Its running the index.php page only. any help ?

Related posts

Leave a Reply

1 comment

  1. Looks like you’ll need rewritebase as you have an htaccess on your parent folder

    RewriteEngine On
    RewriteBase /questions/
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /questions/ [L]
    

    Are you putting this on a subfolder of the root of the site called /questions?

    if yes, I think you’ll need to change

    RewriteRule . questions/ [L]
    

    to

    RewriteRule . /questions/ [L]
    

    or try this instead of rewritebase

    <IfModule mod_rewrite.c>
        RewriteEngine On
        RewriteCond %{REQUEST_FILENAME} !-f
        RewriteCond %{REQUEST_FILENAME} !-d
        RewriteRule . /questions/ [L]
    </IfModule>