我的.htaccess文件中有以下规则:
RewriteEngine On
RewriteBase /
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /sitio/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /sitio/index.php [L]
</IfModule>
# END WordPress
只有在我使用以下网址时才有效: http://www.kobsa.com.pe/sitio/的的index.php /约-US /
答案 0 :(得分:0)
Plain
在wp-config.php
行之前That's all. Stop editing...
添加:
define('WP_SITEURL','http://'。$ _SERVER ['HTTP_HOST']。'/ sitio');
define('WP_HOME','http://'。$ _SERVER ['HTTP_HOST']。'/ sitio');
将固定链接更改为:Post name
你已经完成了。