我在浏览器中的本地主机将重定向到“欢迎使用Windows XAMPP”!
我已经在wpe2_options,wpe2_posts和wpe2_postmeta的数据库URL上设置了必需的
htaccss
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
但是它似乎不起作用,当我单击链接时,它一直指向欢迎的xampp。
甚至尝试过虚拟主机
<VirtualHost *:80>
DocumentRoot "C:\xampp\htdocs\site1"
ServerName site1.localhost
<Directory "C:\xampp\htdocs\site1">
DirectoryIndex index.php
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
这会导致其他本地主机站点重定向到site1(wordpress)
请帮助。
答案 0 :(得分:3)
请检查您的.htaccess文件,希望以下代码解决您的问题:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /site1/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /site1/index.php [L]
</IfModule>
# END WordPress
答案 1 :(得分:0)
在WordPress文件夹中打开wp-config.php文件,并设置以下参数。
define('WP_HOME','http://example.com');
define('WP_SITEURL','http://example.com');
答案 2 :(得分:0)
已回答here。
检查您的wp-options表,并在option_value字段中查找所有出现的“ localhost”
http://codex.wordpress.org/Database_Description#Table:_wp_options
SELECT * from wp_options where option_value like '%localhost%';
并将其更改为您的实时网址,您应该已设置