我有默认的wordpress htaccess文件,我添加了新的规则。网址翻译成功。但是,wordpress页面显示'找不到页面'。当我手动加载参数页面时,它的工作正常。在写入正确的URL重写后没有找到wordpress页面信息
.htaccess文件规则
<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine On
RewriteBase/
RewriteRule ^abc/(.*)$ abc/?n=$1 [QSA]
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
任何帮助将不胜感激
设置标志'L'说 “如果找到了,这里是结束,..”:'重写规则^ ABC /(.*)$ ABC/N = $ 1 [QSA,L]' –
其发出了500错误。没有工作.. – HackerGK
我找到了答案,在 [http://stackoverflow.com/questions/23700518/url-redirection-in-wordpress-manually-by-editing-htaccess-file][1] [1]:http://stackoverflow.com/questions/23700518/url-redirection-in-wordpress-manually-by-editing-htaccess-file – HackerGK