【发布时间】:2016-11-21 18:54:09
【问题描述】:
我有一个带有 URL 的 WordPress 网站: http://thelaptopsolutions.in/Laptop%20Solution/
这工作正常,但 URL 现在显示 http://thelaptopsolutions.in/Laptop%20Solution/ 但我希望它显示 http://thelaptopsolutions.in
这是我当前的 htaccess 代码
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /Laptop%20Solution/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /Laptop%20Solution/index.php [L]
</IfModule>
# END WordPress
提前谢谢..
【问题讨论】:
-
您的
.htaccess文件在哪里?Laptop%20Solution是安装 WordPress 的物理子目录吗? (在这种情况下,我假设您的.htaccess文件也在此子目录中?)
标签: php wordpress .htaccess url-rewriting url-redirection