How do I remove wordpress from my permalinks?

admin2025-06-02  3

I am a newbie, and struggling a little. My wordpress file is called 'wordpress' in my root file, so I now have domain/wordpress/

How do i get my web address to domain/example-page?

Sorry if any of this is not technically sound. As mentioned, im very new and learning as I go! Thanks

I am a newbie, and struggling a little. My wordpress file is called 'wordpress' in my root file, so I now have domain/wordpress/

How do i get my web address to domain/example-page?

Sorry if any of this is not technically sound. As mentioned, im very new and learning as I go! Thanks

Share Improve this question edited Mar 5, 2019 at 0:37 fuxia 107k39 gold badges255 silver badges461 bronze badges asked Mar 5, 2019 at 0:34 S.TippleS.Tipple 1
Add a comment  | 

1 Answer 1

Reset to default 1

Sounds like you might have unzipped the wordpress package directly into your web root. Move everything in the /wordpress/ folder to the / folder (web root) and you should be good.

If you intend to have the installation run out of the /wordpress/ directory, then update your .htaccess file to look like this:

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

# END WordPress
转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1748838195a314143.html

最新回复(0)