• Resolved Andreia Peixoto

    (@andreialuka)


    Hi.

    I’m really lost.

    So I am doing a new site for a company. They still have their old site on the air. It’s a joomla site.

    Lets say the site url is https://www.example.com.
    This site is hosted on wwww.server.com/example and has the redirection on the cpannel.
    Just with that, the joomla site runs perfectly at https://www.example.com.

    So I started assembling the new wordpress site on https://www.server.com/newsite. I installed the wordpress setup and put the all site together. After finishing everything, I went to cpannel and tried to redirect to the new site folder.

    Then I went to the general options on my wordpress and changed the Site Address (URL) to https://www.example.com and saved.

    After, I tried to open the https://www.example.com website and it opened the new wordpress homepage perfectly. The problem is the rest of the subpages (for example https://www.example.com/company) of the website return a 500 Internal Server Error.

    Does anyone have any idea why? What am I doing wrong? Pleeeease help!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The sub-pages not redirecting might be a .htcaccess misconfiguration.

    The link below might help you as another user was experiencing a similar problem.

    https://www.ads-software.com/support/topic/sub-pages-can-not-be-shown?replies=6

    Let me know if this helps so that I may further troubleshoot the problem for you if it doesn’t.

    If your site on root then used this .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

    *************************
    if your site in subfolder and your url like this: https://xyz.com/hemu
    then used this htaccess:

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

    Thread Starter Andreia Peixoto

    (@andreialuka)

    Thanks. It worked… What a foul I was… I actually saw this before but didn’t pay attention.

    THanks.

    But now I have another small problem… do you have any ideia why the fontawesome icons dont show now?

    Thread Starter Andreia Peixoto

    (@andreialuka)

    Actually I soldved it. Instead of just using the plugin I inserted the code on the <head>.

    Thanks.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Error on subpages (permalinks??)’ is closed to new replies.