我在网站上使用wordpress,
在tes.com/index.php/about/之前的这个网址 我想要这样的网址:tes.com/about /
我曾尝试复制部分WordPress'但.htaccess显示404错误。
我的.htaccess文件如下:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
关于从哪里开始以及如何完成我正在寻找的内容的任何想法?
答案 0 :(得分:2)
转到您的WP-ADMIN - &gt;设置 - &gt;永久链接并在那里使用永久链接结构更改,如果它生成任何.htaccess文件,则复制内容并更新.htaccess文件。
或者通过创建包含内容的文件phpinfo.php来检查您的托管mod_rewrite是否已启用
上传此文件并通过浏览器浏览。因此,您知道哪些模块已启用。您需要mod_rewrite enable从URL中删除index.php。
答案 1 :(得分:0)
试试这个 -
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /test.com/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /test.com/index.php [L]
</IfModule>