1

我正在开发一个网站,我需要获得漂亮的网址。

在花了几个小时阅读大量教程之后,它总是给我一个错误..

我在根目录 (www.mysite.com/.htaccess) 中创建了 .htaccess 文件。

我会将网址从www.mysite.com/subdirectory/news.php转换为www.mysite.com/subdirectory/news/

我试过了

RewriteRule ^subdirecotry/news.php$ www.mysite.com/subdirectory/news [L]

但它没有用。谢谢!

4

1 回答 1

1

你可以试试:

RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s/+(subdirecotry/news)\.php/?\s [NC]
RewriteRule ^ /%1 [R,L]

RewriteRule ^(subdirecotry/news)/?$ /$1.php [L,NC]
于 2012-05-11T18:03:24.813 回答