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 11 Answer
Reset to default 1Sounds 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