我已下载了一个字新闻网站,需要在前端工作。 我面临的问题是,除了主页外,每页都显示我的根服务器/指数。 php
自下载以来 我已:
- Updated the wp_options for both siteurl and home
- Updated the rewritebase in .htaccess url to the name of the subfolder.
我是否还需要更新?
行政区除主页外,仅每页/外每页都正确运作。
EDIT: Add.htaccess
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /wordpress/
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
页: 1
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /wordpress/
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]
</IfModule>
# END WordPress