0
有人可以幫我寫這個htaccess規則嗎?我沒有發現任何在網絡上的相關:(這裏是流量,我想:.htaccess插入目錄的規則
1)有人打開URL site.com/12345(任何5個號碼)
2)他必須被重定向到site.com/de/12345
我使用WordPress的,我已經有了這2個重定向生活:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
# force ssl
RewriteCond %{SERVER_PORT} ^80$
RewriteRule ^(.*)$ https://%{SERVER_NAME}%{REQUEST_URI} [L,R]
非常感謝您的幫助!
丹尼
感謝傑里米!但它並不真正起作用。我沒有看到任何影響:( –