美好的一天: 我的网站位于digitalOcean的Ubuntu Droplet中。我同时拥有Wordpress网站和CakePHP网站。 CakePHP运行良好。
WordPress,我有一个小问题: 例如,如果我访问www.mywebpage.cl,它将显示我的“ Apache2 Ubuntu默认页面”页面(附加apache1.jpg): 如果我在浏览器上访问: http://www.mywebpage.cl/alianzaWordpress/datos1/,然后转到我的网页(mysite.jpg)。
我想访问www.mywebpage.cl并自动定向到http://www.mywebpage.cl/alianzaWordpress/datos1/
我试图修改/etc/apache2/sites-available/000-default.conf,但没有成功。 我尝试将DocumentRoot设置为/ var / www / html / alianzaWordpress / datos1,但仍无法正常工作
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
#DocumentRoot /var/www/html/alianzaWordpress/datos1
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/html>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
修改后,我执行“ a2enmod重写;服务apache2重新启动” 在此处输入图片说明 请任何建议对我来说都很好,我也在我的站点中使用了永久链接“帖子名称”。 (permalinks.jpg)
关于, 费利佩 enter image description here
答案 0 :(得分:0)
无论如何,我发现容易做的事。
我用此信息修改了/var/www/html/index.html这个文件,以重定向到我想要的文件夹:
<meta http-equiv="Refresh" content="0; url=http://www.mywebpage.cl/alianzaWordpress/datos1/">
很抱歉提出一个简单的问题,现在我了解到, 费利佩