0
我應該把什麼URL重寫規則在.htaccess重寫此:我該如何做這個簡單的URL重寫?
http://www...com/one/john
到這一點:
http://www...com/one/two/index.php?profile=john
我應該把什麼URL重寫規則在.htaccess重寫此:我該如何做這個簡單的URL重寫?
http://www...com/one/john
到這一點:
http://www...com/one/two/index.php?profile=john
這應該做到這一點。 /one
之後的任何內容不包括/
將被傳入參數profile
。
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^one/([^/]+)$ /one/two/index.php?profile=$1 [L,QSA]
謝謝... .htaccess文件應包含哪些文件? (「two」,「one」,or above above「one」)? – John
@John在這種情況下,.htaccess文件應該位於文檔根目錄'/' –
它可以工作,但是所有的CSS都消失了。如何讓CSS工作? – John