【发布时间】:2016-06-10 10:21:44
【问题描述】:
为什么即使我激活了 .htaccess,这个示例域 www.example.com/about-us 也不起作用
AddHandler php-stable .php
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
当您还浏览此链接 www.example.com/index.php/about-us 时,它会将您重定向到此 www.example.com/about-us,但当您浏览此 www.example .com/Index.php/about-us 那是 url 工作的时间。请帮忙。它托管在 Godaddy 上
【问题讨论】: