Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对 .htaccess 文件很陌生,我需要一些帮助..
我有一个希腊网站,我想要像 επικοινωνία.html 这样的网址。但是,我还没有设法使用 htaccess 文件成功翻译。
例如,我的代码是:
Options +FollowSymlinks RewriteEngine On RewriteRule επικοινωνία.html contact.html
但是,浏览器中显示的 url 根本没有改变。
我错过了什么?
试试这个代码:
Options +FollowSymLinks -MultiViews # Turn mod_rewrite on RewriteEngine On RewriteBase / RewriteRule ^επικοινωνία\.html$ /contact.html [L,B,R]