I have a wordpress site(example
) and I want to run another wordpress on the server. example
's files are at /var/www/html/example
directory on the server. I created a anotherSite
Folder in /var/www/html/example/anotherSite
and then copy all wordpress files in it. When I run , It connect to
anotherSite
but then redirect to .
/var/www/html/example/.htaccess
are as follow:
########## REDIRECT SSL
RewriteCond %{HTTP:X-Forwarded-Proto} =http
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
####### REDIRECT WWW
RewriteEngine On
RewriteCond %{HTTP_HOST} ^example\$ [NC]
RewriteRule ^(.*)$ /$1 [R=301,L]
RedirectMatch 301 /MYFolder(.*) /MYFolder/$1
# 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>
How can I fix redirect?
Note: example
have a post with id 23023
and title anothersite-how-can-we-have
.
I have a wordpress site(example
) and I want to run another wordpress on the server. example
's files are at /var/www/html/example
directory on the server. I created a anotherSite
Folder in /var/www/html/example/anotherSite
and then copy all wordpress files in it. When I run http://example/anotherSite
, It connect to anotherSite
but then redirect to http://example/anothersite-how-can-we-have/23023
.
/var/www/html/example/.htaccess
are as follow:
########## REDIRECT SSL
RewriteCond %{HTTP:X-Forwarded-Proto} =http
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
####### REDIRECT WWW
RewriteEngine On
RewriteCond %{HTTP_HOST} ^example\$ [NC]
RewriteRule ^(.*)$ https://www.example/$1 [R=301,L]
RedirectMatch 301 /MYFolder(.*) /MYFolder/$1
# 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>
How can I fix redirect?
Note: example
have a post with id 23023
and title anothersite-how-can-we-have
.
I am not sure, but If you change folder of wordpress installation and when URL visited it still shows old URL, but you want it to show new URL. You should change address in wordpress settings.
Instructions: https://codex.wordpress/Changing_The_Site_URL