我正在开发一个网站,我需要获得漂亮的网址。
花了几个小时阅读了大量的教程后,它总是给我一个错误..
我在根目录(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]
但它不起作用。 谢谢!
答案 0 :(得分:1)
您可以尝试:
RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s/+(subdirecotry/news)\.php/?\s [NC]
RewriteRule ^ /%1 [R,L]
RewriteRule ^(subdirecotry/news)/?$ /$1.php [L,NC]