我的链接或固定链接有问题

时间:2017-05-15 作者:shiny

我有一个wordpress网站,设置为www.mydomainsample。但是,当它打开其他链接(例如服务页面)时,它将显示localhost/wordpress/index。php/服务。

你知道我怎样才能改到www.mydomainsample吗。当我打开服务页面时,com/services。谢谢,祝你今天愉快:)

1 个回复
SO网友:Akshat

1) 添加或编辑。htaccess文件,应为:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
2)进入管理面板->设置->永久链接并选择帖子名称,如果这无法修复,请单击自定义结构并写入/%postname%/

结束

相关推荐

为ADD_REWRITE_RULE配置.htAccess才有意义

我正在尝试此代码codex wordpress sitefunction custom_rewrite_basic() { add_rewrite_rule(\'^leaf/([0-9]+)/?\', \'index.php?page_id=$matches[1]\', \'top\'); } add_action(\'init\', \'custom_rewrite_basic\'); 必须如何通过。必须为上述代码配置htaccess文件才能使其有意义?如果我把