Wordpress directory won't open - wordpress

I have installed wordpres, and all files from wordpress are in public_html folder. In same public_html folder I have /onlineforms directory, but it won't load using
https://url/onlineforms
There is .htaccess file
Prevent folder browsing
Options All -Indexes
but no changes.
How can I fix this so I will be able to open url/onlineforms/index.php?

you have to hit by file name if you folder has index file you hit https://url/onlineforms/index.php or html which file you have load

Related

Hide WP-includes, and WP-content/uploads from WordPress

I am using WordPress, I have to hide WP-includes, and WP-content/uploads from WordPress. I have tried to add the below code in htaccess
Options -Indexes
Also, I have referred to this link but still, it's not working for me.
The below link is working
http://localhost:8080/wordpress/wp-includes/
but if I add then I can see all the files. Same for the upload folder
http://localhost:8080/wordpress/wp-includes/assets
http://localhost:8080/wordpress/wp-content/uploads/2022/01
Note-localhost is just an example
Where does the .htaccess file exist on the server? Which path?
Are you sure your web server is processing this file? Are you indeed running Apache?
As long as you have a file named .htaccess (no spaces), and it's placed in your root HTML folder, or within both wp-includes and wp-content folders, and somewhere within the file on its own line, you have Options -indexes, this should be respected for all subfolders and turn off auto-indexing. Can you share the entire contents of this file, perhaps you have placed this line somewhere it's not being read.
After some research, I have created a .htaccess file in the wp-content/uploads and added the below code. And it's started working
# Kill PHP Execution
<Files ~ ".ph(?:p[345]?|t|tml)$">
deny from all
</Files>

URL shows subdirectory named 'en' although it is not in the public_html

I am using Softaculous to install WordPress from Cpanel on the root public_html directory, and when the installation finishes successfully, and after opening the domain it opens like this: www.somewebsite.com/en, although there is no dirctory in public_html with the name 'en'. How do I fix this problem?

“Critical error on your website” Wordpress File Shifted

My Problem is all the file and folder of wp-admin/wp-includes is shifted to wp-content folder automatically after certain period of time.
This is my website url : http://tech-webroyals.com/wp_v23_iqmass/
this is my cpanel view of wp-content folder where all wp-admin file relocated
Any help?

Can I unzip WordPress folder directly into htdocs folder?

Can I unzip WordPress folder directly into htdocs folder without creating WordPress folder in it?
To unzip wordpress.zip inside htdocs folder, one blank folder should be there.
So first create blank folder that unzip wordpress.zip inside that folder.
Thanks,
Yes you can, the wordpress files should be installed in the DocumentRoot for the website which I think in your case is the htdocs folder.
When you unzip it it will unzip with a wordpress folder, just move the contents of the folder up a level and remove the wordpress directory.
You just need to configure your wp-config.php file with the relevant access details for the database connection

Wordpress - allow files in site root to be accessed

I have a wordress site but I have a simple page which is not part of the wordpress project
http://sitetest.com/mypage.php
How can I make wordpress ignore this file and allow it to be shown
Just upload this php file to your /public_html directory and run as usually http://sitetest.com/mypage.php, it should work.
UPD. I checked and it works for me.
Just put the file in the site root folder. It will be accessible.
Example: if your site root is /var/www/html/ or public_html then put the file in html/public_html folder where others WordPress files & folders are like wp-content, wp-includes, wp-admin etc.

Resources