• I’m curious how I would make, for example, ?page_id=3 be either its own directory, so /about/ or else its own page like about.php?

    Thanks for your help.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter tinuviel

    (@tinuviel)

    Right, I’ve set up my .htaccess file to read:

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

    but my perma URL For pages is still showing up as:
    https://myurl.com/index.php/about/

    instead of
    https://myurl.com/about/

    Why is that happening?

    Thread Starter tinuviel

    (@tinuviel)

    Still trying to work this out. Are there any good tutorials for this? The help file on the WP page is totally unclear and I don’t understand its instructions.

    Thanks.

    remove index.php/ from .htaccess should do it.

    Thread Starter tinuviel

    (@tinuviel)

    All right, so now I have this:

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

    but the URL is still the same: https://myurl.com/index.php/about/&#8230; I’m not sure what’s going on.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How to set up page name file names?’ is closed to new replies.