• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

URGENT. problem with wordpress

jose_maria

New Pleskian
hola.

he creado un fichero php que me crea cliente,suscripcion y dominio y me lo relaciona, ademas de instalarme wordpress en mi dominio.

el problema que tengo es que en vez de instalarse en raiz se me crea una subdirectorio llamado wordpress donde se instala.

mi pregunta es si hay alguna forma de moverlo todo a / o directamente que se me instale ahi. pero desde el fichero php no desde el panel de plesk que ya comprobe que si funciona.

gracias.
 
hello.

I created php file to add client, domain and subscription and it relased to me.

Also, it install wordpress in domain.

my problem is it install wordpress ins subdirectory named wordpress instead root directory.

How it would be brought directly to root you were installing ?
 
For Apache, edit or create a file ".htaccess" in the root dicrectory with the following content:
Code:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www.)?YOURDOMAIN.COM$
RewriteRule ^(/)?$ wordpress [L]


For NGINX, please add the following lines in the text box "additional nginx directives" at the webserver setting:
Code:
if ($http_host ~ "^(www.)?YOURDOMAIN.COM$"){
set $rule_0 1;
}
if ($rule_0 = "1"){
rewrite ^(/)?$ /wordpress last;
}


If you want to move the worpress installation completly, please visit:

 
I haven t explained well.

solution that I've seen in many forums and no use to me.

I want all the default wordpress installed in the root directory. instead a folder " wordpress" is created.

thanks you.
 
In upcoming Plesk 12.1 version we have added possibility for installation first application to root directory. All other applications will be installed to corresponding directories for preventing possible conflicts between applications. Thus you can install WP first in root and then other applications if necessary.
In the current Plesk version you can select custom installation and remove directory for starting installation to the root directory.
 
Back
Top