我有一个页面调用inventaires,永久链接是mywebsite.com/inventaires 每当我尝试访问它时,我都会被重定向到主页mywebsite.com
我的htc访问权限如下:
# 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 :(得分:0)
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
</IfModule>
# END WordPress
试试这段代码