更改URL .htaccess

时间:2015-05-16 08:48:52

标签: .htaccess

从这个: http://ice-phoenix.dx.am/jlpt/form/try_question.php

对此: http://ice-phoenix.dx.am/jlpt/try_question

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^jlpt/form/try_question\.php$ jlpt/try_question/ [L] 

能帮到我吗?

非常感谢你。

1 个答案:

答案 0 :(得分:0)

在Root / .htaccess文件中尝试此操作

RewriteEngine On    
RewriteCond %{THE_REQUEST} /jlpt/form/([^.]+)\.php [NC]
RewriteRule ^ /jlpt/%1? [R,L]

RewriteRule ^jlpt/([^/]+)/?$ /jlpt/form/$1.php [L,NC]