admin管理员组

文章数量:1291323

Closed. This question is off-topic. It is not currently accepting answers.

Questions that are too localized (such as syntax errors, code with restricted access, hacked sites, hosting or support issues) are not in scope. See how do I ask a good question?

Closed 3 years ago.

Improve this question

I just decided to learn Wordpress, I created new site successfully with name of 'unique-university' using flywheel but when I click 'OPEN SITE' It redirect me to Xamppp dashboard page 'http://localhost/dashboard/'. I just try to google this issue but still not able to resolve this issue so I'm hoping some kind of help to kick start my learning in wordpress . here is my '.htaccess' code:

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /uniqueuniversity/index.php [L]
</IfModule>

# END WordPress
Closed. This question is off-topic. It is not currently accepting answers.

Questions that are too localized (such as syntax errors, code with restricted access, hacked sites, hosting or support issues) are not in scope. See how do I ask a good question?

Closed 3 years ago.

Improve this question

I just decided to learn Wordpress, I created new site successfully with name of 'unique-university' using flywheel but when I click 'OPEN SITE' It redirect me to Xamppp dashboard page 'http://localhost/dashboard/'. I just try to google this issue but still not able to resolve this issue so I'm hoping some kind of help to kick start my learning in wordpress . here is my '.htaccess' code:

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /uniqueuniversity/index.php [L]
</IfModule>

# END WordPress
Share Improve this question edited May 31, 2021 at 7:26 AR Soft asked May 31, 2021 at 7:07 AR SoftAR Soft 111 bronze badge
Add a comment  | 

1 Answer 1

Reset to default 0

You are missing the rewriteBase as well

replace RewriteBase / with RewriteBase /uniqueuniversity/

本文标签: redirectWordpress on a local machine redirecting to xampp dashboard page